Hello All,
I am trying to get adjusted GPA but SAS keeps giving me an errror. I got the student GPA = 3.18 so I put:
PROC MEANS DATA= STUDENTS MEAN;
VAR GPA;
RUN;
DATA ADJ GPA;
SET STUDENTS;
ADJ GPA = STUDENT MEAN - GPA;
RUN;
I keep getting statement is not valid, can you help??
Thanks!
You need to use valid SAS names for variables and datasets. Valid SAS names contain only letters, digits and underlines, and start with either a letter or underline. No blanks.
In the fiuture, when you get an ERROR you have no clue about, post the log.
How is this different that your previous question? Which have valid answers?
https://communities.sas.com/t5/SAS-Studio/Help-on-calculations/m-p/331649
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 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.
Ready to level-up your skills? Choose your own adventure.