cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
FN
FN
Level VI

Column filter for graph builder (Parallel plot)

The local data filter allows the user to select the rows of interest.

 

I wonder how I can allow the same functionality but for columns without having to edit the graph.

 

For example, allowing the user to select what to visualize between weight, size, age, sex... 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

Graph Builder(
	Size( 490, 448 ),
	Show Control Panel( 0 ),
	Variables(
		X( :age ),
		X( :sex, Position( 1 ) ),
		X( :height, Position( 1 ) ),
		X( :weight, Position( 1 ) ),
		Color( :sex )
	),
	Elements( Parallel( X( 1 ), X( 2 ), X( 3 ), X( 4 ), Legend( 5 ) ) )
)
1 REPLY 1
jthi
Super User

Re: Column filter for graph builder (Parallel plot)

Would Column Switcher help? You might need multiple ones and if you have duplicates in the column switchers the changing gets a bit annoying

-Jarmo