BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Daisy2
Obsidian | Level 7

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;
1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

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;

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

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;
Daisy2
Obsidian | Level 7
Awesome! Thanks a bunch.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 608 views
  • 0 likes
  • 2 in conversation