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
zfreidin
Level I

How to plot distributions at Graph Builder (instead of box plots)

Hello,

I'm looking for a way to present the data from Graph Builder in a way of distributions instead of the box plots (as in the JRP attachment). Basically I want each graph builder square to look like JPG attachment.

Is it possible? Can anyone help me out?

3 REPLIES 3
Ressel
Level VII

Re: How to plot distributions at Graph Builder (instead of box plots)

It is infinitely more helpful if an example table to tinker around with is provided. Have you tried the different summary statistic options in the Graph Builder?

 

Ressel_0-1713436857396.png

 

zfreidin
Level I

Re: How to plot distributions at Graph Builder (instead of box plots)

Hi,

I'm attaching the JRP file with the table. Don't know how it was skipped before - sorry. Thanks for your help

pmroz
Super User

Re: How to plot distributions at Graph Builder (instead of box plots)

If you want a bunch of mini-graphs combined into one graph, try the Wrap option.

pmroz_0-1713469598800.png

dt = open("$sample_data\Bands Data.jmp");

gb = dt << Graph Builder(
	Size( 1832, 943 ),
	Show Control Panel( 0 ),
	Variables( X( :timestamp ), Y( :viscosity ), Wrap( :customer ) ),
	Elements( Bar( X, Y, Legend( 7 ) ) )
);

Recommended Articles