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 design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Using Column Switcher with Graphlets

I'm trying to make a series of drill down graphs with graphlets.  I'd like to have the column switcher available in each of the drill down graphs.  Is this possible?  When I try, the column switcher always goes away.

 

 

1 REPLY 1
jthi
Super User

Re: Using Column Switcher with Graphlets

You can for example utilize Click

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

gb = dt << Graph Builder(
	Show Control Panel(0),
	Variables(X(:height), Y(:weight)),
	Elements(Points(X, Y, Legend(4)), Line Of Fit(X, Y, Legend(6))),
	SendToReport(
		Dispatch({}, "Graph Builder", FrameBox,
			{Set Graphlet(
				Picture(
					Distribution(
						Nominal Distribution(Column(:age)),
						Automatic Recalc(1)
					);
				),
				Click(
					dist = Distribution(
						Nominal Distribution(Column(:age)),
						Automatic Recalc(1)
					);
					dist << Column Switcher(:age, {:name, :age, :sex});
				)
			)
			}
		)
	)
);
-Jarmo

Recommended Articles