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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles