Hi,
Is it possible to mix data step RWI and proc outputs going to the same ODS destination? I'm using the absolute method in a data step RWI but want to populate some of the regions with proc-produced graphics. The structure of the RWI in the data step suggests 'no' since the entire container must be defined.
Thanks!
--Ben
The following code could give you some hint.
data _null_;
file print;
set sashelp.class;
put _all_;
run;
proc print data=sashelp.class;run;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.