cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

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