Applying R Scripts in Rulex Flows
The R Bridge task allows you to perform statistical calculations via R script on Rulex data, and either overwrite the original dataset with the output results, or create a new dataset (such as clusters or advanced association structures).
This type of task may be useful when you already have statistical algorithms in R, and want to use them in Rulex without having to rewrite any of the logic.
The R script can either be entered directly in the task, or a reference can be provided to an external script file.
Prerequisites
you must have created a flow;
R software is installed where Rulex is running.
Miniconda must have been installed on the machine where Rulex Factory is running.
Procedure
Drag and drop the R Bridge task onto the stage.
Connect the task that contains the dataset on which you want to perform the R script to the R Bridge task.
Double click the R Bridge task.
Configure the script options as described in the table below.
Save and compute the task.
R bridge options | |
---|---|
Name | Description |
Advanced Configuration options | |
Select executable type | Select the executable type you want to use in the task. The options available are:
The Configuration tab changes according to the selected executable. |
Executable file area | Drag the Python executable file on this area if you have chosen Python as the executable file type, or drag the Conda executable file here if you have chosen Conda as the executable file type. You can browse on your machine to upload the file by clicking on the Select button. |
Configuration tab | |
Use user environment | Select this checkbox if you want to use the environment created by Rulex. This option is available only if Conda has been chosen as the executable file type. |
Select Conda Environment | In this drop down list, choose the Conda environment you want to use in the task. This option is available only if Conda has been chosen as the executable file type. |
Console tab (available for both Python and Conda executable files) | |
Connect R Bridge | Click on it to open the Interactive Console, where you can write the code. |
Interactive Console | Here you can write the code which will be executed within the task. The dataset is saved as |
Save History | Click on this button to save the changes made to the code. The code will be printed in the Script. |
Clear History | Click on this button to delete all the changes made to the code. |
Script tab (available for both Python and Conda executable files) | |
R Editor | Here you can visualize and edit the code, just like in the Interactive Console in the Console tab. |
Execute Code | Click this button to execute the code and visualize the results in the Last Execution Output area. |
Save Code | This button saves the code written in the Script area. |
Last Execution Output | Here you can visualize the output of the last code execution. |