Guys i was trying to save my graph output to a specified path.
I wanted the output to be a .png file.
I tried using the below code but the PNG file gets created in the work library and not in the defined my_folder path.
Any suggestions... would be helpful
Thanks
filename graphout "/my_folder/";
goptions reset=all device=png gsfname=graphout;
PROC GPLOT DATA = sashelp.class;
PLOT Age * Name / name="mychart2"
VAXIS=AXIS1
HAXIS=AXIS2
FRAME;
RUN; QUIT;