Condition Node
In Functions
// Read input data and store it as a DataFrame named 'table'
var table = NodeInputReader.inputAsDataFrame();
table.column(1).get(0)
// Check if the value in the 1st row and 2nd column of the DataFrame (USD) is greater than 3.7
if (table.column(1).get(0) > 3.6) {
// Return true if the condition is met
return true;
} else {
// Return false if the condition is not met
return false;
}