If you compute a subset table in JMP 17 with the Filtered Rows option:
danschikore_0-1684244891459.png
The Log will show you what the script should look like:
// Subset data table
// → Data Table( "Subset of Big Class 2" )
Data Table( "Big Class" ) << Subset(
Filtered Rows( :height >= 61 & :weight <= 98 ),
Selected columns only( 0 )
);
Note that the data filter that is included in the interface is only for UI - the JSL only requires the where-clause that the filter generates. In earlier versions of JMP one way to do something similar would be to select the rows before computing the subset:
Data Table( "Big Class" ) << Select Where(:height >= 61 & :weight <= 98);
Data Table( "Big Class" ) << Subset(
Selected Rows( 1 ),
Selected columns only( 0 )
);