cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar

How to save your charts,tables and other analysis in pdf and other formats?

I am trying to save the results using JMP Journal but I am unable to do so. Would anyone please help me out with this problem?

1 ACCEPTED SOLUTION

Accepted Solutions
Peter_Bartell
Level VIII

Re: How to save your charts,tables and other analysis in pdf and other formats?

To add a bit to my colleague Ian's suggestion, if you are running JMP version 12, you can en masse export multiple platform report elements from the JMP analysis platform report window to your desired file format, select File -> Save As -> and then a desired file format. This will send all the major elements of the JMP report to that file format.

11609_pastedImage_0.png

View solution in original post

4 REPLIES 4
ian_jmp
Staff

Re: How to save your charts,tables and other analysis in pdf and other formats?

Please find an example:

NamesDefaultToHere(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = dt << Bivariate(X(:height), Y(:Weight));

myJRN = biv << Journal;

myJRN << SavePDF("$DESKTOP/My Journal.pdf");

Re: How to save your charts,tables and other analysis in pdf and other formats?

Thanks, it was helpful

Peter_Bartell
Level VIII

Re: How to save your charts,tables and other analysis in pdf and other formats?

To add a bit to my colleague Ian's suggestion, if you are running JMP version 12, you can en masse export multiple platform report elements from the JMP analysis platform report window to your desired file format, select File -> Save As -> and then a desired file format. This will send all the major elements of the JMP report to that file format.

11609_pastedImage_0.png

Re: How to save your charts,tables and other analysis in pdf and other formats?

Thanks, it helped me out.