cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

How can I do a PDF files with Jump

Hi all,

In fact I have a small issue because I want to do a PDF file with JMP that can be a summarized of some graphs (save in datas table JMP) and a table from some greatness of Analysis (average, sigma, min and max).

ex :

12438_Capture9898.PNG

12439_pastedImage_2.png

So I want do for each graph his tableau and put that on a PDF file.

I put in attachement my JMP file.

NB : the present table does not correspond to the graph above.

Thanks for the help.

Yann N.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How can I do a PDF files with Jump

Or, instead of printing the journal as PDF, you could just do a Save As of the journal and choose PDF.

Dan Obermiller

View solution in original post

4 REPLIES 4

Re: How can I do a PDF files with Jump

Hi Yann,

You can put both analysis into a journal and print the journal to pdf.

Regards,

Guillaume

Guillaume

Re: How can I do a PDF files with Jump

Or, instead of printing the journal as PDF, you could just do a Save As of the journal and choose PDF.

Dan Obermiller

Re: How can I do a PDF files with Jump

Hi Yann,

I use the script below so I don't have to specify the details each time I save the pdf.

  1. Create a journal
  2. Send my graphs to the journal
  3. Add a save pdf button which has my preferences specified (you will need to experiment with the margins and scale factor)
  4. Press the button to generate the pdf

Note: if the folder for the save location doesn't exist or JMP can't write to it the script will fail but not warn you.

Use: Current Journal() << Append( H List Box( Page Break Box(), ) to start a new page.

Regards,

Stephen

//set file properties

//(if location doesn't exist or JMP can't write to it the script will fail silently)

SaveLocation = "C:\Reports\";

Author = "My Name";

Title = "My Report";

//Create a journal to recieve the output

ResultWindow = New Window( Title, <<journal );

//add output

Current Journal() << Append(

  Graph Builder(

  Size( 534, 500 ),

  Show Control Panel( 0 ),

  Variables(

  X( :Prototype ),

  Y( :Name( "Sucre 1/3 [%]" ) ),

  Y( :Name( "Sucre 2/3 [%]" ), Position( 1 ) ),

  Wrap( :Voies )

  )

  )

);

//add a save button to the Journal Window

Current Journal() << Append(

  H List Box(

  Button Box( "Save As PDF",

  thisWin = Current Window();

  thisWin << Set page setup(

  margins( 0.4, 0.4, 0.7, 0.7 ),

  scale( 0.7 ),

  portrait( 1 ),

  paper size( "A4" )

  );

  thisWin << Set Print Footers(

  Author/*left*/,

  "&d;"/*center*/,

  "Page &pn; of &pc;"/*right*/

  );

  path = SaveLocation || title || Char(Long Date( Today() )) || ".pdf";

  thisWin << Save PDF( path );

  ),

  )

);

yannntima
Level II

Re: How can I do a PDF files with Jump

Thank you for the support, I think I have what I looking for. I wil try each solution.

Yann N

Recommended Articles