Hi Everyone,
I've been trying to look up for the keyword that would enable me to Output the MANOVA Test Criteria and their corresponding F and p-values to a new data set, but it seems that this functionality is unavailable.
I am actually bootstrapping and this is the reason why I'd like to export them in a separate file.
Thanks for your help
Thank you @ballardw for your reply. It turned out to be an easy task. I was looking for the ODS Table "MultStat". So, I was able to export it using ods output MultStat = Summary_stats;
https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html
This method works for any PROC
@mahmoud_slim wrote:
Hi Everyone,
I've been trying to look up for the keyword that would enable me to Output the MANOVA Test Criteria and their corresponding F and p-values to a new data set, but it seems that this functionality is unavailable.
I am actually bootstrapping and this is the reason why I'd like to export them in a separate file.
Thanks for your help
Add the statement
ods output ParameterEstimates=myEstimates;
among your procedure statements.
Thanks @PGStats
The statement that worked out for me was ods output MultStat = Summary_stats;
It would help to show us the code you are using as different procedures will do MANOVA and likely have slightly different options.
Likely you are looking for some form of ODS OUTPUT which directs the output of a result table to a SAS dataset. The procedure syntax documentation would have ODS table names to use or run your code sandwiched between ODS Trace On; <procedure code> ODS Trace off; statements to generate a list of the tables created.
Thank you @ballardw for your reply. It turned out to be an easy task. I was looking for the ODS Table "MultStat". So, I was able to export it using ods output MultStat = Summary_stats;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.