teradataml 20.0.0.4__py3-none-any.whl → 20.0.0.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of teradataml might be problematic. Click here for more details.

Files changed (131) hide show
  1. teradataml/LICENSE-3RD-PARTY.pdf +0 -0
  2. teradataml/README.md +182 -13
  3. teradataml/__init__.py +2 -1
  4. teradataml/_version.py +2 -2
  5. teradataml/analytics/analytic_function_executor.py +8 -13
  6. teradataml/analytics/json_parser/analytic_functions_argument.py +4 -0
  7. teradataml/analytics/sqle/__init__.py +16 -1
  8. teradataml/analytics/utils.py +60 -1
  9. teradataml/automl/__init__.py +290 -106
  10. teradataml/automl/autodataprep/__init__.py +471 -0
  11. teradataml/automl/data_preparation.py +29 -10
  12. teradataml/automl/data_transformation.py +11 -0
  13. teradataml/automl/feature_engineering.py +64 -4
  14. teradataml/automl/feature_exploration.py +639 -25
  15. teradataml/automl/model_training.py +1 -1
  16. teradataml/clients/auth_client.py +12 -8
  17. teradataml/clients/keycloak_client.py +165 -0
  18. teradataml/common/constants.py +71 -26
  19. teradataml/common/exceptions.py +32 -0
  20. teradataml/common/messagecodes.py +28 -0
  21. teradataml/common/messages.py +13 -4
  22. teradataml/common/sqlbundle.py +3 -2
  23. teradataml/common/utils.py +345 -45
  24. teradataml/context/context.py +259 -93
  25. teradataml/data/apriori_example.json +22 -0
  26. teradataml/data/docs/sqle/docs_17_20/Apriori.py +138 -0
  27. teradataml/data/docs/sqle/docs_17_20/NERExtractor.py +121 -0
  28. teradataml/data/docs/sqle/docs_17_20/NGramSplitter.py +3 -3
  29. teradataml/data/docs/sqle/docs_17_20/SMOTE.py +212 -0
  30. teradataml/data/docs/sqle/docs_17_20/TextMorph.py +119 -0
  31. teradataml/data/docs/sqle/docs_17_20/TextParser.py +54 -3
  32. teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -1
  33. teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +2 -2
  34. teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +2 -2
  35. teradataml/data/docs/uaf/docs_17_20/DFFT.py +1 -1
  36. teradataml/data/docs/uaf/docs_17_20/DFFT2.py +1 -1
  37. teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +1 -1
  38. teradataml/data/docs/uaf/docs_17_20/DFFTConv.py +1 -1
  39. teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +4 -4
  40. teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +2 -2
  41. teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +2 -2
  42. teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +6 -6
  43. teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
  44. teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +1 -1
  45. teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +4 -4
  46. teradataml/data/docs/uaf/docs_17_20/MultivarRegr.py +1 -1
  47. teradataml/data/docs/uaf/docs_17_20/PACF.py +1 -1
  48. teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
  49. teradataml/data/docs/uaf/docs_17_20/PowerTransform.py +3 -3
  50. teradataml/data/docs/uaf/docs_17_20/Resample.py +5 -5
  51. teradataml/data/docs/uaf/docs_17_20/SAX.py +3 -3
  52. teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
  53. teradataml/data/docs/uaf/docs_17_20/SimpleExp.py +1 -1
  54. teradataml/data/docs/uaf/docs_17_20/Smoothma.py +3 -3
  55. teradataml/data/docs/uaf/docs_17_20/UNDIFF.py +1 -1
  56. teradataml/data/jsons/byom/onnxembeddings.json +1 -0
  57. teradataml/data/jsons/sqle/17.20/NGramSplitter.json +6 -6
  58. teradataml/data/jsons/sqle/17.20/TD_Apriori.json +181 -0
  59. teradataml/data/jsons/sqle/17.20/TD_NERExtractor.json +145 -0
  60. teradataml/data/jsons/sqle/17.20/TD_SMOTE.json +267 -0
  61. teradataml/data/jsons/sqle/17.20/TD_TextMorph.json +134 -0
  62. teradataml/data/jsons/sqle/17.20/TD_TextParser.json +114 -9
  63. teradataml/data/jsons/sqle/20.00/AI_AnalyzeSentiment.json +328 -0
  64. teradataml/data/jsons/sqle/20.00/AI_AskLLM.json +420 -0
  65. teradataml/data/jsons/sqle/20.00/AI_DetectLanguage.json +343 -0
  66. teradataml/data/jsons/sqle/20.00/AI_ExtractKeyPhrases.json +328 -0
  67. teradataml/data/jsons/sqle/20.00/AI_MaskPII.json +328 -0
  68. teradataml/data/jsons/sqle/20.00/AI_RecognizeEntities.json +328 -0
  69. teradataml/data/jsons/sqle/20.00/AI_RecognizePIIEntities.json +328 -0
  70. teradataml/data/jsons/sqle/20.00/AI_TextClassifier.json +359 -0
  71. teradataml/data/jsons/sqle/20.00/AI_TextEmbeddings.json +360 -0
  72. teradataml/data/jsons/sqle/20.00/AI_TextSummarize.json +343 -0
  73. teradataml/data/jsons/sqle/20.00/AI_TextTranslate.json +343 -0
  74. teradataml/data/jsons/sqle/20.00/TD_SMOTE.json +2 -2
  75. teradataml/data/jsons/sqle/20.00/TD_VectorDistance.json +1 -1
  76. teradataml/data/ner_dict.csv +8 -0
  77. teradataml/data/ner_input_eng.csv +7 -0
  78. teradataml/data/ner_rule.csv +5 -0
  79. teradataml/data/pattern_matching_data.csv +11 -0
  80. teradataml/data/pos_input.csv +40 -0
  81. teradataml/data/sdk/modelops/modelops_spec.json +101737 -0
  82. teradataml/data/tdnerextractor_example.json +14 -0
  83. teradataml/data/teradataml_example.json +21 -1
  84. teradataml/data/textmorph_example.json +5 -0
  85. teradataml/data/to_num_data.csv +4 -0
  86. teradataml/data/tochar_data.csv +5 -0
  87. teradataml/data/trans_dense.csv +16 -0
  88. teradataml/data/trans_sparse.csv +55 -0
  89. teradataml/data/url_data.csv +10 -9
  90. teradataml/dataframe/copy_to.py +38 -27
  91. teradataml/dataframe/data_transfer.py +61 -45
  92. teradataml/dataframe/dataframe.py +1110 -132
  93. teradataml/dataframe/dataframe_utils.py +73 -27
  94. teradataml/dataframe/functions.py +1070 -9
  95. teradataml/dataframe/sql.py +750 -959
  96. teradataml/dbutils/dbutils.py +33 -13
  97. teradataml/dbutils/filemgr.py +14 -10
  98. teradataml/hyperparameter_tuner/utils.py +4 -2
  99. teradataml/lib/aed_0_1.dll +0 -0
  100. teradataml/opensource/_base.py +12 -157
  101. teradataml/options/configure.py +24 -9
  102. teradataml/scriptmgmt/UserEnv.py +317 -39
  103. teradataml/scriptmgmt/lls_utils.py +456 -135
  104. teradataml/sdk/README.md +79 -0
  105. teradataml/sdk/__init__.py +4 -0
  106. teradataml/sdk/_auth_modes.py +422 -0
  107. teradataml/sdk/_func_params.py +487 -0
  108. teradataml/sdk/_json_parser.py +453 -0
  109. teradataml/sdk/_openapi_spec_constants.py +249 -0
  110. teradataml/sdk/_utils.py +236 -0
  111. teradataml/sdk/api_client.py +897 -0
  112. teradataml/sdk/constants.py +62 -0
  113. teradataml/sdk/modelops/__init__.py +98 -0
  114. teradataml/sdk/modelops/_client.py +406 -0
  115. teradataml/sdk/modelops/_constants.py +304 -0
  116. teradataml/sdk/modelops/models.py +2308 -0
  117. teradataml/sdk/spinner.py +107 -0
  118. teradataml/store/__init__.py +1 -1
  119. teradataml/table_operators/Apply.py +16 -1
  120. teradataml/table_operators/Script.py +20 -1
  121. teradataml/table_operators/query_generator.py +4 -21
  122. teradataml/table_operators/table_operator_util.py +58 -9
  123. teradataml/utils/dtypes.py +4 -2
  124. teradataml/utils/internal_buffer.py +22 -2
  125. teradataml/utils/utils.py +0 -1
  126. teradataml/utils/validators.py +318 -58
  127. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/METADATA +188 -14
  128. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/RECORD +131 -84
  129. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/WHEEL +0 -0
  130. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/top_level.txt +0 -0
  131. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/zip-safe +0 -0
@@ -0,0 +1,420 @@
1
+ {
2
+ "json_schema_major_version": "1",
3
+ "json_schema_minor_version": "2",
4
+ "json_content_version": "1",
5
+ "function_name": "AI_AskLLM",
6
+ "function_version": "1.0",
7
+ "function_type": "fastpath",
8
+ "function_category": "Text Analytics AI",
9
+ "function_alias_name": "AIAskLLM",
10
+ "function_r_name": "aa.ai_askllm",
11
+ "supports_view": false,
12
+ "short_description": "This function enables users to provide a tailored prompt to the LLM, enhancing results according to their unique use cases or data input requirements. Users will have the option to specify two input columns: one for the data and the other for a question or reference.",
13
+ "long_description": "This function enables users to provide a tailored prompt to the LLM, enhancing results according to their unique use cases or data input requirements. Users will have the option to specify two input columns: one for the data and the other for a question or reference.",
14
+ "input_tables": [
15
+ {
16
+ "requiredInputKind": [
17
+ "PartitionByAny",
18
+ "PartitionByKey"
19
+ ],
20
+ "isOrdered": false,
21
+ "partitionByOne": false,
22
+ "name": "InputTable",
23
+ "alternateNames": [],
24
+ "isRequired": true,
25
+ "rDescription": "Specifies the table containing the questions.",
26
+ "description": "Specifies the table containing the questions.",
27
+ "datatype": "TABLE_ALIAS",
28
+ "allowsLists": false,
29
+ "rName": "data",
30
+ "useInR": true,
31
+ "rOrderNum": 0
32
+ },
33
+ {
34
+ "requiredInputKind": [
35
+ "PartitionByAny",
36
+ "PartitionByKey"
37
+ ],
38
+ "isOrdered": false,
39
+ "partitionByOne": false,
40
+ "name": "ContextTable",
41
+ "alternateNames": [],
42
+ "isRequired": true,
43
+ "rDescription": "Specifies the table containing the context to answer the question.",
44
+ "description": "Specifies the table containing the context to answer the question.",
45
+ "datatype": "TABLE_ALIAS",
46
+ "allowsLists": false,
47
+ "rName": "context",
48
+ "useInR": true,
49
+ "rOrderNum": 1
50
+ }
51
+
52
+ ],
53
+ "argument_clauses": [
54
+ {
55
+ "name": "ApiBase",
56
+ "alternateNames": [],
57
+ "isRequired": false,
58
+ "rOrderNum": 2,
59
+ "allowNaN": false,
60
+ "description": "Specifies the LLM API base URL for azure.",
61
+ "rDescription": "Specifies the LLM API base URL for azure.",
62
+ "datatype": "STRING",
63
+ "allowsLists": false,
64
+ "allowPadding": true,
65
+ "rName": "api.base",
66
+ "useInR": true,
67
+ "rFormulaUsage": false
68
+ },
69
+ {
70
+ "name": "ApiKey",
71
+ "alternateNames": [],
72
+ "isRequired": false,
73
+ "rOrderNum": 3,
74
+ "allowNaN": false,
75
+ "description": "Specifies the LLM API Key for azure.",
76
+ "rDescription": "Specifies the LLM API Key for azure.",
77
+ "datatype": "STRING",
78
+ "allowsLists": false,
79
+ "allowPadding": true,
80
+ "rName": "api.key",
81
+ "useInR": true,
82
+ "rFormulaUsage": false
83
+ },
84
+ {
85
+ "name": "ApiVersion",
86
+ "alternateNames": [],
87
+ "isRequired": false,
88
+ "rOrderNum": 4,
89
+ "allowNaN": false,
90
+ "description": "Specifies the LLM API version for azure.",
91
+ "rDescription": "Specifies the LLM API version for azure.",
92
+ "datatype": "STRING",
93
+ "allowsLists": false,
94
+ "allowPadding": true,
95
+ "rName": "api.version",
96
+ "useInR": true,
97
+ "rFormulaUsage": false
98
+ },
99
+ {
100
+ "name": "DeploymentId",
101
+ "alternateNames": [],
102
+ "isRequired": false,
103
+ "rOrderNum": 5,
104
+ "allowNaN": false,
105
+ "description": "Specifies the deployment id of the LLM. It takes engine id for azure OpenAI.",
106
+ "rDescription": "Specifies the deployment id of the LLM. It takes engine id for azure OpenAI.",
107
+ "datatype": "STRING",
108
+ "allowsLists": false,
109
+ "allowPadding": true,
110
+ "rName": "deployment.id",
111
+ "useInR": true,
112
+ "rFormulaUsage": false
113
+ },
114
+ {
115
+ "name": "ModelName",
116
+ "alternateNames": [],
117
+ "isRequired": false,
118
+ "rOrderNum": 6,
119
+ "allowNaN": false,
120
+ "description": "Name of the large language model to be used for text analytics tasks.",
121
+ "rDescription": "Name of the large language model to be used for text analytics tasks.",
122
+ "datatype": "STRING",
123
+ "allowsLists": false,
124
+ "allowPadding": true,
125
+ "rName": "model.name",
126
+ "useInR": true,
127
+ "rFormulaUsage": false
128
+ },
129
+ {
130
+ "name": "ModelArgs",
131
+ "alternateNames": [],
132
+ "isRequired": false,
133
+ "rOrderNum": 7,
134
+ "allowNaN": false,
135
+ "description": "JSON string representing the inference parameters for the selected LLM Model.",
136
+ "rDescription": "JSON string representing the inference parameters for the selected LLM Model.",
137
+ "datatype": "STRING",
138
+ "allowsLists": false,
139
+ "allowPadding": true,
140
+ "rName": "model.args",
141
+ "useInR": true,
142
+ "rFormulaUsage": false
143
+ },
144
+ {
145
+ "name": "ApiType",
146
+ "alternateNames": [],
147
+ "isRequired": true,
148
+ "rOrderNum": 8,
149
+ "permittedValues": ["azure","aws","gcp","nim"],
150
+ "allowNaN": false,
151
+ "description": "Identification of the cloud platform.",
152
+ "rDescription": "Identification of the cloud platform.",
153
+ "datatype": "STRING",
154
+ "allowsLists": false,
155
+ "allowPadding": true,
156
+ "rName": "api.type",
157
+ "useInR": true,
158
+ "rFormulaUsage": false,
159
+ "rDefaultValue": null
160
+ },
161
+ {
162
+ "name": "AccessKey",
163
+ "alternateNames": [],
164
+ "isRequired": false,
165
+ "rOrderNum": 9,
166
+ "allowNaN": false,
167
+ "description": "Specifies the AWS Bedrock service access key.",
168
+ "rDescription": "Specifies the AWS Bedrock service access key.",
169
+ "datatype": "STRING",
170
+ "allowsLists": false,
171
+ "allowPadding": true,
172
+ "rName": "access.key",
173
+ "useInR": true,
174
+ "rFormulaUsage": false
175
+ },
176
+ {
177
+ "name": "SecretKey",
178
+ "alternateNames": [],
179
+ "isRequired": false,
180
+ "rOrderNum": 10,
181
+ "allowNaN": false,
182
+ "description": "Specifies the AWS Bedrock service secret key.",
183
+ "rDescription": "Specifies the AWS Bedrock service secret key.",
184
+ "datatype": "STRING",
185
+ "allowsLists": false,
186
+ "allowPadding": true,
187
+ "rName": "secret.key",
188
+ "useInR": true,
189
+ "rFormulaUsage": false
190
+ },
191
+ {
192
+ "name": "SessionKey",
193
+ "alternateNames": [],
194
+ "isRequired": false,
195
+ "rOrderNum": 11,
196
+ "allowNaN": false,
197
+ "description": "Specifies the AWS bedrock service session key.",
198
+ "rDescription": "Specifies the AWS bedrock service session key.",
199
+ "datatype": "STRING",
200
+ "allowsLists": false,
201
+ "allowPadding": true,
202
+ "rName": "session.key",
203
+ "useInR": true,
204
+ "rFormulaUsage": false
205
+ },
206
+ {
207
+ "name": "Region",
208
+ "alternateNames": [],
209
+ "isRequired": false,
210
+ "rOrderNum": 12,
211
+ "allowNaN": false,
212
+ "description": "Specifies the name of the AWS Bedrock service region or Google Cloud service region depending on the api type.",
213
+ "rDescription": "Specifies the name of the AWS Bedrock service region or Google Cloud service region depending on the api type.",
214
+ "datatype": "STRING",
215
+ "allowsLists": false,
216
+ "allowPadding": true,
217
+ "rName": "region",
218
+ "useInR": true,
219
+ "rFormulaUsage": false
220
+ },
221
+
222
+ {
223
+ "name": "AccessToken",
224
+ "alternateNames": [],
225
+ "isRequired": false,
226
+ "rOrderNum": 13,
227
+ "allowNaN": false,
228
+ "description": "Specifies the session token for google cloud.",
229
+ "rDescription": "Specifies the session token for google cloud.",
230
+ "datatype": "STRING",
231
+ "allowsLists": false,
232
+ "allowPadding": true,
233
+ "rName": "access.token",
234
+ "useInR": true,
235
+ "rFormulaUsage": false
236
+ },
237
+ {
238
+ "name": "Project",
239
+ "alternateNames": [],
240
+ "isRequired": false,
241
+ "rOrderNum": 14,
242
+ "allowNaN": false,
243
+ "description": "Specify the name of the gcp project.",
244
+ "rDescription": "Specify the name of the gcp project.",
245
+ "datatype": "STRING",
246
+ "allowsLists": false,
247
+ "allowPadding": true,
248
+ "rName": "project",
249
+ "useInR": true,
250
+ "rFormulaUsage": false
251
+ },
252
+ {
253
+ "name": "EnableSafety",
254
+ "alternateNames": [],
255
+ "isRequired": false,
256
+ "defaultValue": "TRUE",
257
+ "rOrderNum": 15,
258
+ "permittedValues": ["TRUE", "FALSE"],
259
+ "allowNaN": false,
260
+ "description": "Specifies if the safety feature needs to be enabled when api_type is gcp.",
261
+ "rDescription": "Specifies if the safety feature needs to be enabled when api_type is gcp.",
262
+ "datatype": "STRING",
263
+ "allowsLists": false,
264
+ "allowPadding": true,
265
+ "rName": "enable.safety",
266
+ "useInR": true,
267
+ "rFormulaUsage": false
268
+ },
269
+ {
270
+ "targetTable": [
271
+ "InputTable"
272
+ ],
273
+ "checkDuplicate": true,
274
+ "allowedTypes": ["VARCHAR"],
275
+ "allowedTypeGroups": [
276
+ "VARCHAR"
277
+ ],
278
+ "matchLengthOfArgument": "",
279
+ "allowPadding": false,
280
+ "name": "TextColumn",
281
+ "alternateNames": [],
282
+ "isRequired": true,
283
+ "rDescription": "Specifies the name of the text column to be used as input.",
284
+ "description": "Specifies the name of the text column to be used as input.",
285
+ "datatype": "COLUMNS",
286
+ "allowsLists": false,
287
+ "rName": "text.column",
288
+ "useInR": true,
289
+ "rFormulaUsage": false,
290
+ "rOrderNum": 16
291
+ },
292
+
293
+ {
294
+ "defaultValue": true,
295
+ "permittedValues": [
296
+ "true",
297
+ "false"
298
+ ],
299
+ "isOutputColumn": false,
300
+ "name": "isDebug",
301
+ "alternateNames": [],
302
+ "isRequired": false,
303
+ "rDescription": "Specify whether error logging is required.",
304
+ "description": "Specify whether error logging is required.",
305
+ "datatype": "BOOLEAN",
306
+ "allowsLists": false,
307
+ "rName": "isDebug",
308
+ "useInR": true,
309
+ "rOrderNum": 17
310
+ },
311
+ {
312
+ "targetTable": [
313
+ "InputTable"
314
+ ],
315
+ "checkDuplicate": true,
316
+ "allowedTypes": [],
317
+ "allowedTypeGroups": [
318
+ "ALL"
319
+ ],
320
+ "matchLengthOfArgument": "",
321
+ "allowPadding": false,
322
+ "name": "Accumulate",
323
+ "alternateNames": [],
324
+ "isRequired": false,
325
+ "rDescription": "Specifies the input table columns to copy to the output table. By default, the function doesn't copy any input table columns to the output table.",
326
+ "description": "Specifies the input table columns to copy to the output table. By default, the function doesn't copy any input table columns to the output table.",
327
+ "datatype": "COLUMNS",
328
+ "allowsLists": true,
329
+ "rName": "accumulate",
330
+ "useInR": true,
331
+ "rOrderNum": 18
332
+ },
333
+ {
334
+ "name": "AUTHORIZATION",
335
+ "alternateNames": [],
336
+ "isRequired": false,
337
+ "rOrderNum":19,
338
+ "allowNaN": false,
339
+ "description": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
340
+ "rDescription": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
341
+ "datatype": "STRING",
342
+ "allowsLists": false,
343
+ "allowPadding": true,
344
+ "rName": "authorization",
345
+ "useInR": true,
346
+ "rFormulaUsage": false
347
+ },
348
+ {
349
+ "name": "prompt",
350
+ "alternateNames": [],
351
+ "isRequired": false,
352
+ "rOrderNum":20,
353
+ "allowNaN": false,
354
+ "description": "Specifies the custom prompt.",
355
+ "rDescription": "SSpecifies the custom prompt.",
356
+ "datatype": "STRING",
357
+ "allowsLists": false,
358
+ "allowPadding": true,
359
+ "rName": "prompt",
360
+ "useInR": true,
361
+ "rFormulaUsage": false
362
+ },
363
+ {
364
+ "name": "QUESTIONPOSITION",
365
+ "alternateNames": [],
366
+ "isRequired": false,
367
+ "rOrderNum":21,
368
+ "allowNaN": false,
369
+ "description": "Specifies the position of the question in the custom prompt.",
370
+ "rDescription": "Specifies the position of the question in the custom prompt.",
371
+ "datatype": "STRING",
372
+ "allowsLists": false,
373
+ "allowPadding": true,
374
+ "rName": "question.position",
375
+ "useInR": true,
376
+ "rFormulaUsage": false
377
+ },
378
+ {
379
+ "name": "DATAPOSITION",
380
+ "alternateNames": [],
381
+ "isRequired": false,
382
+ "rOrderNum":22,
383
+ "allowNaN": false,
384
+ "description": "Specifies the position of the input data in the custom prompt.",
385
+ "rDescription": "Specifies the position of the input data in the custom prompt.",
386
+ "datatype": "STRING",
387
+ "allowsLists": false,
388
+ "allowPadding": true,
389
+ "rName": "data.position",
390
+ "useInR": true,
391
+ "rFormulaUsage": false
392
+ },
393
+ {
394
+ "targetTable": [
395
+ "ContextTable"
396
+ ],
397
+ "checkDuplicate": true,
398
+ "allowedTypes": ["VARCHAR"],
399
+ "allowedTypeGroups": [
400
+ "VARCHAR"
401
+ ],
402
+ "matchLengthOfArgument": "",
403
+ "allowPadding": false,
404
+ "name": "ContextColumn",
405
+ "alternateNames": [],
406
+ "isRequired": true,
407
+ "rDescription": "Specifies the name of the context column to be used as input.",
408
+ "description": "Specifies the name of the context column to be used as input.",
409
+ "datatype": "COLUMNS",
410
+ "allowsLists": false,
411
+ "rName": "context.column",
412
+ "useInR": true,
413
+ "rFormulaUsage": false,
414
+ "rOrderNum": 23
415
+ }
416
+
417
+ ]
418
+ }
419
+
420
+