cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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.pngRessel_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.pngpmroz_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