Just a couple of questions regarding a graph I am trying to produce for regular reporting purposes...
The code works perfectly and I just now want to put the finishing touches on the slides to make them look more appealing.
Here is part of my code. The code exports graphs to pngs and then I import them into powerpoint (4 graphs per slide). The look ok but I want them to look better if possible.
Many thanks
ods listing gpath="path...";
ods pdf file="path.\graph.pdf" columns=2 style=meadow startpage=no;
ods graphics on/width=4.5in height=3.75in;
proc sgplot data=Egidwh_oneway4 ( where = (factor = "Age"));
title "Age - LR";
vbar level / response=exposure;
vline level / response=LR y2axis;
run;
ods graphics off;
ods pdf close;
What version of SAS are you using?
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
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.