Execute Python script
Use this operation to execute a custom Python script on the measurement data.
-
In the Python script path input field of the Execute Python script operation, select or enter the path to your Python script file.
-
(Optional) Activate the Execute individually per measurement file checkbox to control how the script is executed:
-
Checked: The script is triggered once per measurement file, allowing parallel execution. This is faster but cannot access data from other measurement files.
-
Unchecked: The script is triggered once for all files together, which allows operations combining data across multiple files. This mode is slower but supports data aggregation scenarios.
Note
Refer to the Python scripting guide for detailed instructions on writing custom operations.
Make sure that all script dependencies are installed and accessible in the Python environment used by Data Operator.
-