Pipelines¶
New Pipeline¶
Finish Pipeline¶
Run Pipeline¶
If Condition¶
Description¶
Toggles one of the two channels depending on whether a condition defined by the user holds true or not.
Parameters¶
If Condition Node requires 3 parameters:
Parameter |
Type |
Description |
---|---|---|
Value 1 |
int/float/str/list/dict/bool |
The first value used in the condition. |
Operator |
combobox |
The operator used used in the condition. |
Value 2 |
int/float/str/list/dict/bool |
The second value used in the condition. |
Together they form a condition, e.g. column_name == ‘city’ which can be True or False. The Toggle button then switches the active channel, i.e. the user can choose if the “True branch” will run or the “False branch”.
Add New Variable¶
Description¶
Add New Variable Node creates a new variable which gets stored in the variable explorer.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
Add New Variable Node requires 2 parameters for a succesful creation of a new variable.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the just defined variable under which will it be stored in the variable explorer, e.g. “Int1”. |
Value |
int/float/str/list/dict/bool |
Value of the new variable, e.g. [1, “b”, {“key”: “value”}]. |
Step-by-step guide¶
Convert Variable Type¶
Description¶
Convert Variable Type Node converts the type of the selected variable to a different type if such conversion makes sense.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
Convert Variable Type Node requires 2 parameters for a succesful conversion of the variable type.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the variable present in the variable explorer whose type is to be changed, e.g. “List1”. |
Convert to type |
combobox |
A new type of the selected variable after the conversion. It can be selected as one of the options of the combobox. |
Step-by-step guide¶
Math Modify Variable¶
Description¶
Math Modify Variable Node serves to perform a mathematical operations on variables in the variable explorer.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
Math Modify Variable Node requires 3-4 parameters to succesfully perform a mathematical operation on a variable. The last parameter, New variable name, is optional in a sense that if left blank the value of the chosen variable will be rewritten adequately to the performed operation. However if a new name is inserted a new variable bearing the new name with the value of the old one corrected by the mathematical operation will be created while preserving the old variable.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the variable present in the variable explorer which would be used for the operation. |
Math operation |
combobox |
A math operation to be perfomed on the selected variable. It can be selected as one of the options of the combobox. |
Argument |
int/float |
An argument of the selected mathematical operation, i.e. in case of e.g. division the argument is divisor. |
New name |
string |
Name of the new variable whose value will be equal to the old value modifed by the selected operation. If left blank the initial variable will get overwritten. |
Step-by-step guide¶
String Modify Variable¶
Description¶
String Modify Variable Node serves to perform a various operations on variables of the string type.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
String Modify Variable Node requires 3-5 parameters to succesfully perform a string operation on a variable. Argument 2 is in some cases optional, e.g. split(argument1) does not need a second argument. The last parameter, New variable name, is optional in a sense that if left blank the value of the chosen variable will be rewritten adequately to the performed operation. However if a new name is inserted a new variable bearing the new name with the value of the old one modified by the selected operation will be created while preserving the old variable.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the variable present in the variable explorer which would be used for the operation. |
String operation |
combobox |
A string operation to be perfomed on the selected variable. It can be selected as one of the options of the combobox. |
Argument |
string |
The first argument of the selected string operation. |
Argument 2 |
string |
The second argument of the selected mathematical operation. |
New name |
string |
Name of the new variable whose value will be equal to the old value modifed by the selected operation. If left blank the initial variable will get overwritten. |
Step-by-step guide¶
List Modify Variable¶
Description¶
List Modify Variable Node serves to perform a various operations on lists.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
List Modify Variable Node requires 3-4 parameters to succesfully perform an operation on a stored list. The last parameter, New variable name, is optional in a sense that if left blank the value of the chosen variable will be rewritten adequately to the performed operation. However if a new name is inserted a new variable bearing the new name with the value of the old one modified by the selected operation will be created while preserving the old variable.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the variable (list) present in the variable explorer which would be used for the operation. |
List operation |
combobox |
A string operation to be perfomed on the selected variable. It can be selected as one of the options of the combobox. |
Argument |
Get element, Remove, Pop – int // Append, Index – int/float/str/list/dict/bool // Concatenate – list |
An argument of the selected list operation. |
New name |
string |
Name of the new variable whose value will be equal to the old value modifed by the selected operation. If left blank the initial variable will get overwritten. |
Step-by-step guide¶
Dictionary Modify Variable¶
Description¶
Dictionary Modify Variable Node serves to perform a various operations on dictionaries.
Hint
For a detailed walkthrough see the step-by-step guide.
Parameters¶
Dictionary Modify Variable Node requires 2-4 parameters to succesfully perform an operation on a stored dictionary. Argument is required only for the Get value by key function. The last parameter, New variable name, is optional in a sense that if left blank the value of the chosen variable will be rewritten adequately to the performed operation. However if a new name is inserted a new variable bearing the new name with the value of the old one modified by the selected operation will be created while preserving the old variable.
Parameter |
Type |
Description |
---|---|---|
Variable name |
string |
A name of the variable (dictionary) present in the variable explorer which would be used for the operation. |
Dictionary operation |
combobox |
A string operation to be perfomed on the selected variable. It can be selected as one of the options of the combobox. |
Argument |
dictionary key – int/float/string |
An argument of the Get value by key operation. |
New name |
string |
Name of the new variable whose value will be equal to the old value modifed by the selected operation. If left blank the initial variable will get overwritten. |