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.
  • See how to use JMP Pro to analyze and predict using entire data set rather than selected points in a curve. Register for Nov. 6 Mastering JMP.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

Change the data filter display in JMP19

Hello,

 

I am currently migrating an application from JMP 18 to JMP 19. In the process, I have noticed a change in behavior (JSL) regarding the Data Filter.

In the application, I create a data filter with many columns (>10). I had gotten into the habit of changing the data filter’s display using the command << n col(3) to spread my more than 10 filters across 3 columns (less visually cluttered). In JMP18, this worked (see script below).

 

JMP18:

SophieCuvillier_0-1788453752082.png

 

JMP19:

SophieCuvillier_1-1788453790950.png

 

In JMP19, it has no effect... Has anyone else encountered this issue and found a workaround? Having the entire data filter displayed vertically is too cumbersome, yet I’d still like to use JMP’s data filter object, which is very convenient for selection.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp" );
obj = dt <<
Data Filter(
	Add Filter(
		columns( :Region, :POP ),
		Where( :Region == {"C", "N"} )
	),
	Mode( Select( 0 ), Show( 0 ), Include( 1 ) )
);

wait(0.1);

 (obj << report)[Lineup Box( 2 )] << ncol(2)
;
Try( (obj << report)[ListBoxBox( 1 )] << set size( 200, 150 ) );
Try( (obj << report)[Framebox( 1 )] << Frame Size( 200, 20 ) );

Thanks in advance ! 

 

1 REPLY 1
jthi
Super User

Re: Change the data filter display in JMP19

There is at least one post in the JMP community regarding this same change -> JMP19 did change display box structure of filters and how the elements are placed within Lineup box. If I remember correctly there are really no good workarounds and I have built my own filters because of that.

-Jarmo

Recommended Articles