Hello,
I am trying to output the highlighted results into a dataset for these 2 proc steps. thank you!
code:
proc ttest data=mrg;
class interval_name;
var bmi;
run;
want output dataset (highlight):
code:
proc npar1way data=mrg wilcoxon;
class interval_name;
var aged;
run;
want output dataset (highlight):
Read about:
1) ODS TRACE statement: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p1fpt3uuow90o3n155hs7bp1mo7f.htm - to list names of output objects
2) ODS SELECT statement: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p1b72ff70v3obrn16aanp1r9q2bu.htm - to select only those which you are interested in
3) ODS OUTPUT statement: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p0oxrbinw6fjuwn1x23qam6dntyd.htm - to grab data from the selected objects into a dataset
Read in the order: 1, 2, 3 because even if you go directly to 3 you will have to get back to 1 and 2 after all. 🙂
Bart
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register 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.