exclude, but not "hide"
Hi,I wanted to remove a data point from a fit - but still show it in a graph.So I tried this:dt = Open( "$SAMPLE_DATA/Companies.jmp" );
dt << Graph Builder(
Variables( X( :"# Employ"n ), Y( :"Sales ($M)"n ) ),
Elements( Points( X, Y, Legend( 3 ) ), Line Of Fit( X, Y, Legend( 5 ) ) )
);
dt << Select Rows( [32] ) << Exclude;
According to the data table, row # 32 is marked "excluded" - but not "h...