Hello,
I am working on proc corr and I need to save the output in SAS dataset under WORK library, however the only printed variables are:
MEAN
STD
N
CORR
CORR
Can you please advise?
Before the code run:
ods trace on;
This will show in the listing all the objects which are created. You can then re-run the code and save the various output models with:
ods output <object>=<dataset>;
Per:
https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html
Apparently the FISHER option produces CI's:
Hello,
Thank you 🙂
But actually I want to save this CI under SAS library dataset, below the attached screenshot of the ONLY variables/outputs printed in a dataset under WORK library.
Before the code run:
ods trace on;
This will show in the listing all the objects which are created. You can then re-run the code and save the various output models with:
ods output <object>=<dataset>;
Per:
https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html
Thank you!!
It worked 🙂
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.