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
gtroey86
Level I

How to save Process Performance Graph as JPEG/PNG?

Hi JMP, 

 

Let's take the big class as an example. 

Do you have a JSL script example to export the process performance graph as a JPEG/PNG? Currently, I manually copy the graph to clipboard and paste it at my pptx. Wish to have automate way of doing it. :)

By the way, I set a random number for the spec limit just to produce the process performance graph.

 

gtroey86_0-1618008971882.pnggtroey86_0-1618008971882.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to save Process Performance Graph as JPEG/PNG?

Here is a simple script to show one way of saving the graph to PowerPoint

pp.PNGpp.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );
ps = Process Screening(
	Process Variables( :NPN1 ),
	Control Chart Type( "Indiv and MR" ),
	Process Performance Graph( 1 )
);
Report( ps )["Process Performance Graph"] << save presentation( "$TEMP\mygraph.pptx" );

Open( "$TEMP\mygraph.pptx" );

 

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How to save Process Performance Graph as JPEG/PNG?

Here is a simple script to show one way of saving the graph to PowerPoint

pp.PNGpp.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\semiconductor capability.jmp" );
ps = Process Screening(
	Process Variables( :NPN1 ),
	Control Chart Type( "Indiv and MR" ),
	Process Performance Graph( 1 )
);
Report( ps )["Process Performance Graph"] << save presentation( "$TEMP\mygraph.pptx" );

Open( "$TEMP\mygraph.pptx" );

 

Jim
gtroey86
Level I

Re: How to save Process Performance Graph as JPEG/PNG?

HI Nelson,

 

Appreciate your prompt response. It works well ! :)

 

 

 

Recommended Articles