BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
kcvaldez98
Obsidian | Level 7

Hi SAS users!

I am trying to create a PROC ANOVA for my analysis and keep coming with this error: ERROR: No continuous effects allowed in PROC ANOVA.

 

My code is this: PROC ANOVA DATA=ANOVA;
   CLASS Quartiles;
   MODEL riskfactors_countyestimate = demo_edupctn3 demo_povpctn outcomes_adults_mental_distr;
RUN;

Quartiles is a character variable while the rest of the variables are numeric.

I am not very good at the statistical side of SAS so advice is well-appreciated!

The numeric variables are percentages of populations if that also helps!

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
I think you want a GLM, not PROC ANOVA here.

ANOVA expects the variables on the right hand side of the equal sign to be categorical.

View solution in original post

2 REPLIES 2
Reeza
Super User
I think you want a GLM, not PROC ANOVA here.

ANOVA expects the variables on the right hand side of the equal sign to be categorical.
kcvaldez98
Obsidian | Level 7
That would make so much sense, thank you!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 10065 views
  • 3 likes
  • 2 in conversation