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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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