In order to be able to share the results with a non - JMP user , it will be very useful if the data filters in HTML reports are interactive.
dt= Open( "$SAMPLE_DATA/Big Class.jmp" );
Ana = dt << Graph Builder(
Size( 524, 450 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements( Points( X, Y, Legend( 8 ) ) ),
Local Data Filter(
Add Filter(
columns( :age ),
Display( :age, Size( 181, 102 ), List Display )
)
)
);
Rep = Ana << report ;
Rep << Save Interactive HTML("C:\Desktop\Test.html");