ods listing gpath = '/folders/myfolders/PLASMACOMPARIS/PLASMACOMPAPTEN/TREAT.png';
ods graphics /imagename="treat" imagefmt=png;
PROC SGPLOT DATA=STATD;
SERIES X=HR Y=MEAN_CONC/ GROUP=AGE
MARKERS
MARKERATTRS=(SIZE=10PX)
THICKRESP=MEAN_CONC;
yaxis label='Mean Concentration';
xaxis label ='Time (hrs)';
RUN;
When I run this code the graph is produced but I can't output it to my drive. I get the following error:
Can some one tell me how to get around this problem and or how to change my code for getting a *.png file output?
I'm not sure but
'/folders/myfolders/PLASMACOMPARIS/PLASMACOMPAPTEN/TREAT.png';
is not a PATH but a File name.
Try to change to:
ods listing gpath = '/folders/myfolders/PLASMACOMPARIS/PLASMACOMPAPTEN';
you already defined file name and its format in line:
ods graphics /imagename="treat" imagefmt=png;
I'm not sure but
'/folders/myfolders/PLASMACOMPARIS/PLASMACOMPAPTEN/TREAT.png';
is not a PATH but a File name.
Try to change to:
ods listing gpath = '/folders/myfolders/PLASMACOMPARIS/PLASMACOMPAPTEN';
you already defined file name and its format in line:
ods graphics /imagename="treat" imagefmt=png;
Thanks for pointing out my mistake. Once I got rid of the file name in the path, it ran perfectly.
Thanks a lot for your help.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.