I have been using SASUniversityEdition perfectly fine for the last few weeks, but this morning I updated the VirtualBox and SASUniversityEdition. Now I am trying to run the following code:
proc reg data=three;
model radiation = d hours / p clm;
plot r.*hours;
run;
The regression is run fine, but I no longer get any plots, receiving this error: ERROR: Appendage SASXGANO not found, unable to produce graphics.
I did not have this error before updating the programs. How can I get my graphics back? I had seen another post about using a plots= statement, but I haven't been able to get that to work.
Based on that message, it appears that ODS GRAPHICS is not ON. Add this statement before your PROC REG and see if it works for you:
ods graphics on;
Thanks!
Dan
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 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.