cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

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