Hello to all,
I would like to save a graphic produced by proc sgplot on Viya in a personal folder, but I have no idea how to do it.
Any suggestions?
Thanks.
I'm assuming you're using SAS Studio using Viya?
Does the standard version work for you, assuming you modify the path to your location?
To find the path, you can go to the Servers Files and Folders pane, navigate to the folder you want to save it to, right click the location and find the path under properties.
ods graphics / reset imagename="CarGraphicExample";
ods _all_ close;
ods html style=statistical
path="/home/fkhurshed/Demo1"
gpath="/home/fkhurshed/Demo1" (url=none)
file="report.html";
proc sgplot data=sashelp.cars;
scatter x=mpg_city y=mpg_highway;
run;
ods html close;
@MaT721 wrote:
Hello to all,
I would like to save a graphic produced by proc sgplot on Viya in a personal folder, but I have no idea how to do it.
Any suggestions?
Thanks.
I'm assuming you're using SAS Studio using Viya?
Does the standard version work for you, assuming you modify the path to your location?
To find the path, you can go to the Servers Files and Folders pane, navigate to the folder you want to save it to, right click the location and find the path under properties.
ods graphics / reset imagename="CarGraphicExample";
ods _all_ close;
ods html style=statistical
path="/home/fkhurshed/Demo1"
gpath="/home/fkhurshed/Demo1" (url=none)
file="report.html";
proc sgplot data=sashelp.cars;
scatter x=mpg_city y=mpg_highway;
run;
ods html close;
@MaT721 wrote:
Hello to all,
I would like to save a graphic produced by proc sgplot on Viya in a personal folder, but I have no idea how to do it.
Any suggestions?
Thanks.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.