Dear All,
I usually use SGPLOT to make statistical graphics, and currently the output graph is associated with png pic type.
Everytime the SGPLOT generates a graph, it also creates a file in the local folder.
Is there anyway that I can view the graph in SAS without creating a file in my computer?
I chose the result preference that "viewing results using internal browser", but seems not work here.
It would be really appreciated that someone could instruct how to view graphs in SAS efficiently.
Thanks and Regards
There are a few ODS output formats you can use that will embed the graph in the output file without having a separate image file. These include:
ods rtf file="whatever.rtf";
ods pdf file="whatever.pdf";
ods ps file="whatever.ps";
I would recommend trying RTF or PDF first, as they will diplay the best in your Display Manager session. Do note that you will still get a file on your disk ("whatever.rtf"), but that is the only file you see, regardless of the number of graphs or tables in your output.
Hope this helps,
Dan
Hi Dan,
I am using SGPLOT to make a simple line graph. I'm using ODS to output it to a PDF. And it is making the PDF, but also still insisting on making the .png file.
Is there a way to turn off the creation of the .png? I'll be running a macro to make many graphs, and I do not want my workspace, or any space, littered with .png files. I only need the pdfs.
Thank you,
Nicole
Yes, just add:
ods listing close;
to the top of your program. That should do it for you.
Dan
Thank you, that worked. I knew it had to be something simple--I just couldn't find a reference to it in the book, online help, or discussion community. No more .pngs!
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.