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

Data filter always visible (JMP customization)

I wonder how to keep the Rows>Data Filter menu always visible in JMP.

 

Instead of having Local Data Filters in each graph or window, how to keep the general one visible?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Data filter always visible (JMP customization)

Try turning off the Use Floating Window option under the red triangle. The filter window should persist (and stay in the same screen location) while you're working in JMP, though it will disappear when you select a window from another application but reappear when you select a JMP window again. Does this work for your purposes?

 

You also might try JMP Projects, which provide a single-window format for working in JMP. If you launch the data filter inside a project, it will stay in a separate area to the side of the tabbed area for the data table and report windows.

Ross Metusalem
JMP Academic Ambassador

View solution in original post

2 REPLIES 2

Re: Data filter always visible (JMP customization)

Try turning off the Use Floating Window option under the red triangle. The filter window should persist (and stay in the same screen location) while you're working in JMP, though it will disappear when you select a window from another application but reappear when you select a JMP window again. Does this work for your purposes?

 

You also might try JMP Projects, which provide a single-window format for working in JMP. If you launch the data filter inside a project, it will stay in a separate area to the side of the tabbed area for the data table and report windows.

Ross Metusalem
JMP Academic Ambassador

Re: Data filter always visible (JMP customization)

If you're comfortable with scripting, you could also use Data Grid Box () to "embed" a data table and a data filter into the same window. The idea needs more work, but basic concept is below.

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp", invisible );
New Window( "Example",
	H List Box(
		df = dt << Data Filter( Mode( Select( 0 ), Show( 0 ), Include( 1 ) ) ),
		Panel Box( "Data Table", x = Data Grid Box() )
	)
);
x << Set Data Table( dt );

Jed_Campbell_0-1676045515886.png