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

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

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.

View solution in original post

2 REPLIES 2
ballardw
Super User

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.

Ksharp
Super User
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.


sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 406 views
  • 0 likes
  • 3 in conversation