cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
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 XIII

-> 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} ),
		)
	)
);