cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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