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?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.