cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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