Change Where filter in Graph Builder
If I have created a chart with a Where() clause, how do I change that filter from a script?
I can do it with a local data filter, but can't seem to change the Where clause although I can read it using << Get Where Expr
Example:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = dt << Graph Builder(
Variables( X( :weight ), Y( :height ), Color( :sex ) ),
Elements( Point...