Can sas output figure into lst file, like table? I tried and got blank lst file. Can someone help me figure out?
Thanks
George
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.
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.