cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
WoHNY
Level III

JMP 16.2: Problem With Data Filter Show & Include

I am trying to apply a Data Filter using the JSL code below. It is selecting the called for rows but the Show and Include boxes are not checked in the Data Filter window, see below. What am I missing? After this filter I plan to run a CDF plot through the Fit Y by X portal then clear the Data Filter and reapply new Data Filter settings and run a different CDF plot. Thank you.

 

//Select Parms to Plot
stackq4DT << Data Filter(
	Add Filter(
		Columns(:FC, :Parameter), 
		Where(:FC == "Item1"), 
		Where(:Parameter == {"P1", "P2", "P3", "P4"})
	),
	Mode(Select(1) | Show(1) | Include(1))
);

 

WoHNY_1-1651874988625.png

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: JMP 16.2: Problem With Data Filter Show & Include

The Mode() option of the data filter takes multiple arguments separated by a comma:

 

Mode( Show( 1 ), Include( 1 ) )

When using the 'or' operator, the options are not recognized.

View solution in original post

2 REPLIES 2

Re: JMP 16.2: Problem With Data Filter Show & Include

The Mode() option of the data filter takes multiple arguments separated by a comma:

 

Mode( Show( 1 ), Include( 1 ) )

When using the 'or' operator, the options are not recognized.

WoHNY
Level III

Re: JMP 16.2: Problem With Data Filter Show & Include

Thank you very much for correcting my mistake. Works as I need it to.