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 "hidden" (just as expected):
but surprisingly *), the data point 383220 / 63438 is missing in the graph:
Does anybody else experience the same behavior on his/her computer?
Just on my PC? (JMP 16.2.0, Windows).
*) JMP Documentation:
https://community.jmp.com/t5/Learning-Library/Hiding-and-Excluding-Data/ta-p/271761