Is this an error in my re-install or is there a way to program at this time to force the ANOVA table?
I am relatively new to SAS and programming..
What version of SAS did you use before and what version are you now usinng (and is the code exaclty the same)? There are always some small changes between versions.
Have you tried putting:
ods trace on;
proc reg...;
run;
ods trace off;
This will print to the log/output window what objects that procedure creates - ods is the system for creating output objects since 9.x. You can then do:
ods output <object_name>=<dataset_to_save_to>;
proc reg...;
run;
Now I don't have a handy example, but say your procedure creates and object named anova, then your code might look something like:
ods output anova=myanova;
proc reg...;
run;
What version of SAS did you use before and what version are you now usinng (and is the code exaclty the same)? There are always some small changes between versions.
Have you tried putting:
ods trace on;
proc reg...;
run;
ods trace off;
This will print to the log/output window what objects that procedure creates - ods is the system for creating output objects since 9.x. You can then do:
ods output <object_name>=<dataset_to_save_to>;
proc reg...;
run;
Now I don't have a handy example, but say your procedure creates and object named anova, then your code might look something like:
ods output anova=myanova;
proc reg...;
run;
Thank you very much for your reply. The particular model I was working on was appropriate for a proc glm so I did that in place of the regression and when I attempted a regression 10 minutes later, it worked perfectly. Apparently not a problem on the install--maybe I wasn't writing it appropriately. Again, thank you for your reply but it appears to be working fine now!
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.