Custom Script
// Read input data into a DataFrame
var table = NodeInputReader.inputAsDataFrame();
// Extract the first column as a string column
var stringColumn = table.stringColumn(0);
// Filter the DataFrame to include only rows where the values in the first column end with "USD"
var filteredTable = table.where(stringColumn.endsWith("USD"));
// Return the filtered DataFrame
return filteredTable;