cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

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