Condition Node
In Functions
// Read input data and store it as a DataFrame named 'table'
var table = NodeInputReader.inputAsDataFrame();
// Check if the 't_pric' (Price) value in the 1st row of the DataFrame is greater than 1.3
if (table.doubleColumn("t_pric").getDouble(0) > 1.3) {
// Return true if the condition is met
return true;
} else {
// Return false if the condition is not met
return false;
}