HI everybody,
I try to run this progam with SAS University:
proc print data=peuplier;
format clone varfmt.;
title 'Impression du fichier peuplier';
run;
proc glm data=peuplier;
class clone;
model diametre=clone;
run;
and this error message appear: Invalid characters were present in the data.
When i try proc mixed instead of proc glm, it's working....
Someone could know why? My classmate is able to run the same program with proc glm, but not me.....
thanks.
Try filtering out non printable characters in the variable clone with
data peuplier2;
set peuplier;
clone = compress(clone,,"KW");
run;
proc glm data=peuplier2...
Thanks for the answer,
it's still not working, the same error message appear "invalid characters were present in the data". I don't know what's the problem with my SAS university....
Hi @sagag
After experiencing a similar issue, a possible workaround would consists of changing the User locale (see below) to English.
Would that solve your issue?
Cheers,
Damo
Hi All,
Just in case of...
The actual solution consists in updating your browser language as it my night be possible to access SASPreferences with SAS University Edition.
If you use English, it should work.
Cheers,
Damien
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.