To figure this out:
Create a graph using Big Class
Add a local data filter with 2 variables (e.g. age and sex) using the AND button
Select criteria from both variables in the filter
Click the red triangle and select Script > Copy Script
Here's an example that shows the necessary syntax:
dt = open("$sample_data/Big Class.jmp");
// AND
Graph Builder(
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements(
Points( X, Y, Legend( 1 ), Jitter( 1 ) ),
Smoother( X, Y, Legend( 3 ) )
),
Local Data Filter(
Location( {935, 334} ),
Mode( Select( 0 ), Show( 1 ), Include( 1 ) ),
Add Filter(
columns( :age, :sex ),
Where( :age == {12, 13, 14} ),
Where( :sex == "M" )
)
)
);