Building a 4 panel powerpoint slide from proc greplay using the png driver ...
I find the resolution of the graphs to be poor. Documentation on the SAS site suggests adding the image_dpi option to the ods listing statement, but I can't see any improvement.
Does anyone have any tips to improve resolution? Please and thank you.
Basic code below:
ods listing image_dpi=600;
goptions reset=all
nodisplay
dev=png
hsize=5.25in
vsize=4.45in
;
proc shewhart data=chrglossyldall2;
by process_op_cd notsorted;
format wkmnth monyy5.;
boxchart (TotalScrapY ToolScrapY ExitCoilScrapY QScrapY)*wkmnth;
;run;
goptions reset=all
display
dev=png;*
hsize=10.5in
vsize=7.9in ;
ods _all_ close;
ods listing image_dpi=600;
ods powerpoint file='c:\temp\PCR04.pptx';
proc greplay nofs;
igout=gseg;
tc=template.templt;
template=h2v2hdr;
treplay 2:1 3:2 4:3 5:4 name='PCR04';
run;
quit;
ods _all_ close;
Can you post a screenshot of your current output?
Dan, image should be attached here somewhere. I tried PGStats suggestion and found that it made an improvement at 600dpi - but it still doesn't measure up to sasprtc on pdf.
Seems like this forum is crippled to the point of not allowing attachments of any kind anymore.
Hi: I think that the images are disabled temporarily because of the spamming issue that was happening.
cynthia
LISTING and POWERPOINT are two distinct ODS destinations. Try setting the image_dpi= option in the ods powerpoint statement.
PG
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.