cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar

Saving Oneway Plot to JMP Table

Hello JMP Community.

 

Using JMP 18.

 

Here's the issue i'm having.

1) Open csv file into jmp data table

2) Create a Oneway Plot from data in jmp_dt

3) Save Oneway plot script inside jmp_dt                  // Having trouble here.

4) Save jmp_dt

 

AdditiveLamb108_0-1744742163080.png

At the bottom of this script, I call jmp.run_jsl(jsl_code).

I can save the jmp_dt out to a .jmp file. But I want to Oneway script saved in the jmp_dt when I save it.

 

Can someone help me with this?

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Saving Oneway Plot to JMP Table

After the Oneway paragraph is completed in your code, att the statemet

obj << Save Script to Data Table(
		"Place name you want here", <<Replace( 0 ), <<Prompt( 0 )
	);

That will add it to the data table and when you save the data table, the script will be saved with it

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Saving Oneway Plot to JMP Table

After the Oneway paragraph is completed in your code, att the statemet

obj << Save Script to Data Table(
		"Place name you want here", <<Replace( 0 ), <<Prompt( 0 )
	);

That will add it to the data table and when you save the data table, the script will be saved with it

Jim

Recommended Articles