cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
0 Kudos

Hide data point from the chart without actions on rows/columns

Sometimes I just dont want to see a point and/or exclude it from the calculations without data table rows/columns actions. The option of "Exclude/Hide data point" localy as Local data filter does will be great.

 
 
 
 
 
1 Comment
hogi
Level XII

-> Local Data Filter by row()?

Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Transform Column( "Row", Formula( Row() ) ),
	Variables( X( :height ), Y( :weight ) ),
	Elements( Points( X, Y, Legend( 15 ) ), Smoother( X, Y, Legend( 16 ) ) ),
	Local Data Filter(
		Inverse( 1 ),
		Add Filter(
			columns( :Row ),
			Modeling Type( :Row, Nominal ),
			Where( :Row == {6, 10} ),
		)
	)
);