...
29°45′46", 95°22′59″ => Houston, TX, USA
Operator Usage in Easy Mode
- Click + on the parent node.
- Enter Create Model from Numeric Values operator in the search field and select the operator from the Results to open the operator form.
- In the Table drop-down, enter or select the table to create a model.
- In the Model Name field, enter the name of the model to store it in a particular location.
- In the Label Column Name drop-down, select the column name that contains the labels. The drop-down list displays the data based on the selected table name.
- Optional. Click Add More to add a list of column names used to create the model.
- Click Run to view the result.
- Click Save to add the operator to the playbook.
- Click Cancel to discard the operator form.
Usage Details
LQL Command
Code Block |
---|
createModelFromNumericValues(table, outputModelName, label, listOfColumns) |
...
Output
A message saying that the model (name) was successfully created.
Example
Input
table = github_logs
id | height | weight | gender |
---|---|---|---|
1 | 70 | 190 | male |
2 | 63 | 120 | female |
...