I'm working in SAS Enterprise Guide and have ODS GRAPHICS ON. So I get a nice SAS Report in my results.
I would like to export Selected graphs at high dpi and still get all tables and graphs in the html output. How do I do that?
With current code shown below I'm only getting the selected graph as separate files and that same limited output in the html report. Thanks!
ods graphics on;
options ls=78;
/* ods trace on;*/
ODS LISTING GPATH = '\\User\SASOutput\' image_dpi=300;
ODS GRAPHICS / RESET IMAGENAME = 'pN_CV_R1_' IMAGEFMT = TIFF;
ODS SELECT CVPlot;
You can independently maintain a "select list" for each open ODS destination. For example, the following statements include all tables and plots in the HTML destination. It also opens the LISTING destination and selects only one table and one plot for that destination.
ods listing;
proc reg data=sashelp.class plots=all;
model weight=height;
ods html select all;
ods listing select ParameterEstimates fitplot;
quit;
ods listing close;
You can independently maintain a "select list" for each open ODS destination. For example, the following statements include all tables and plots in the HTML destination. It also opens the LISTING destination and selects only one table and one plot for that destination.
ods listing;
proc reg data=sashelp.class plots=all;
model weight=height;
ods html select all;
ods listing select ParameterEstimates fitplot;
quit;
ods listing close;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.