cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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.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