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 use JMP Pro to analyze and predict using entire data set rather than selected points in a curve. Register for Nov. 6 Mastering JMP.

Discussions

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

JSL script for Graph Builder Save script to data table in JMP15

HI ,

Would anyone be able to advise what is the JSL command to Save Script to Data Table/Journal  in Graph Builder ? 

1 REPLY 1
txnelson
Super User

Re: JSL script for Graph Builder Save script to data table in JMP15

Here is an example, taken directly from the Scripting Index

txnelson_0-1634037971036.pngtxnelson_0-1634037971036.png

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Grocery Purchases.jmp" );
obj = dt <<
Association Analysis(
	Item( :Product ),
	ID( :Customer ID )
);
obj <<
Save Script to Data Table(
	"My Analysis", <<Prompt( 0 ), <<Replace( 0 )
);

 

Jim

Recommended Articles