cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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 VI

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 ) ) )
);