Hi,
I don't understand the model in glm. Say.
proc glm data=mydata;
class name;
model a b c d = name;
ods output modelanova=myanova;
run; I am not sure the meaning of "=" in the line of model.
Can we rewrite the code as
model a =name b c d;
Or
model a b =name c d;
In model statements the variable(s) to the left of = are dependent variables and those on the right are independent. So a basic statement like
model a = x y z;
Says build a model that "predicts" values of a using variables x y and z.
Depeding on the procedure many will not allow multiple dependent variables.
In model statements the variable(s) to the left of = are dependent variables and those on the right are independent. So a basic statement like
model a = x y z;
Says build a model that "predicts" values of a using variables x y and z.
Depeding on the procedure many will not allow multiple dependent variables.
model a b c d = name; It is right model, a.k.a multi-variables ANOVA. There is an excellent example in documentation to describe this kind of model.
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.