BookmarkSubscribeRSS Feed
Niugg2010
Obsidian | Level 7

Can sas output figure into lst file, like table? I tried and got blank lst file. Can someone help me figure out?

 

Thanks

George

3 REPLIES 3
tarheel13
Rhodochrosite | Level 12

I wouldn't do that. I make figures and I output to RTF. You can also make them into PNG or JPEG if you want. 

Niugg2010
Obsidian | Level 7
Thanks. You are right. I am just wondering if we can output figure to lst file. I guess we can not.
mkeintz
PROC Star

The archaic PROC PLOT procedure will output to the listing:

 

ods listing;
proc plot data=sashelp.class;
  plot height * weight;
run;
quit;
ods listing close;
--------------------------
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set

Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets

--------------------------
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
  • 3 replies
  • 1272 views
  • 0 likes
  • 3 in conversation