cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

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