Hi,
I'm a new programmer with sas. This afternoon when I was try to produce residual plot to check assumption of linear regression, I suffered from an error "ERROR: The EMF driver can not find any fonts. No output will be created. Fatal ODS error has occurred. Unable to continue processing this output destination."
Here is my code:
proc glm data=Mylib.windturbine;
model output= velocity / ss3 solution clparm;
output out=resid predicted=fitted r=ores rstudent=jsr;
run;
proc loess data=resid plot(only)=(fit);
model ores=fitted / clm;
run:
ods rtf;
ods graphics off;
How could I get rid from this error? I try to search on google but there isn't enough file about this. Please help me thx!
no, I installed it 2 weeks ago.
My friend said it's sas 9.4.
I also encounter this error, but when using ods to produce a rtf.
ods rtf file='filepath.rtf'
bodytitle
/*columns=*/
sasdate
style=rtf
startpage=no;
ods noproctitle;
proc means data=sasbook.marine
mean max min
maxdec=2;
class family;
title 'Whales and Sharks';
run;
proc print data=sasbook.marine;
format length 8.2;
run;
ods rtf close;
Then I don't know what to do with this error, please help!
Sorry, it's my first time using this community. I've posted a new one at here , please help!!
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.