cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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.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