BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ahhh
Obsidian | Level 7

Hi, I am new to this!

Can you please tell me how I can save the entire tables/graphs (output) of proc logistic? I would like to share my results with others and they won't have SAS.

 

Thanks much!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Save it directlly to a pdf file (or a file of your liking)

 

ods pdf file="Your Path\output.pdf";

/* Your code here */

ods pdf close;

View solution in original post

7 REPLIES 7
ahhh
Obsidian | Level 7

Hi, I am new to this!

Can you please tell me how I can save the entire tables/graphs (output) of proc logistic? I would like to share my results with others and they won't have SAS.

 

Thanks much!

 

PeterClemmensen
Tourmaline | Level 20

Save it directlly to a pdf file (or a file of your liking)

 

ods pdf file="Your Path\output.pdf";

/* Your code here */

ods pdf close;
CiCi
Fluorite | Level 6

I prefer to use ods rtf. So you can get an editable output, which is very similar to word file. Try

 

 

ods rtf style=statistical bodytitle;

 

/* your procedure*/

 

ods rtf close;

 

 

Bodytitle is an option to make nicer output. You can also use "style=journal" instead of "statistical" to get different style of output. 

 

Hope this can help you.

Miracle
Barite | Level 11

How about using ods? i.e ods rtf, ods pdf.

If you are very new to ods, have a read of this http://www.lexjansen.com/nesug/nesug03/ps/ps020.pdf

PeterClemmensen
Tourmaline | Level 20

Please do not cross post 🙂

 

Save it directlly to a pdf file (or a file type of your liking)

 

ods pdf file="Your Path\output.pdf";

/* Your code here */

ods pdf close; 

 

ahhh
Obsidian | Level 7

Thankyou everyone! Appreciate this!

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 7 replies
  • 2944 views
  • 1 like
  • 5 in conversation