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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
aaronjiang
Level I

How to generate multiple plots

I wrote a JMP script where I plot data based on my original data. After I manipulate data, I plot it again, but now it can only show the plot for data after manipulation, not the plot for original data. I would like to compare two. Could anyone help with this? Below is the script I used to plot the data.

 

Graph Builder(
	Size( 748, 531 ),
	Show Control Panel( 0 ),
	Automatic Recalc( 0 ),
	Variables( X( :X_NOM_BIN ), Y( :Y_NOM_BIN ), Color( :Name( "Mean(UPDATED THICKNESS" ) ) ),
	Elements( Points( X, Y, Legend( 6 ) ) )
);
10 REPLIES 10
aaronjiang
Level I

Re: How to generate multiple plots

And i want to have separate plots. One plot for table dt, another plot for table dtNew. Basically showing two plots on separate graphs.

Recommended Articles