I want to write a code to create a regression model. the outcome is continuous, but the independent variable is categorical.
I tried this code:
proc reg;model cognitive = race;run;
but it is considering race as a continuous variable.
how can I tell SAS that race is categorical?
I have 2 races
Use GLM instead:
proc glm;
class race;model cognitive = race;run;
Use proc glm and define race as a class variable. BTW, that particular form of regression is called Analysis of Variance (ANOVA).
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
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.