Hello Beautiful People!
I'm using Proc SGPLOT to plot the end results of Proc X11. What I would like to do is specify an output file for my graph, but I'm not seeing an Output statement or anything of the sort that will allow me to save my graph to a file to then be exported. Here's an example:
/*Plot of D10 - the Final Seasonal Factors*/
Title "Monthly Seasonal Factors";
proc sgplot data=work.dummytest;
series x=Month y=d10 / markers markerattrs=(symbol=CircleFilled) ;
run;
Can this be done with Proc SGPLOT? Any information is greatly appreciated; thanks!
-Valentine