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

Is it possible to adjust MANCOVA for multiple covariates? For example, in code below prom is dependent variable (group variable, categorical); a1, a2 and a3 are the independent variables (continuous); minibal is the covariate (continuous).  Is it possible to have minibal2 as well (using this or other procedure)?

proc glm data=abc;

class prom minibal;

model a1 a2 a3 = prom | minibal; 

manova h=_all_;

run;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

@pink_poodle wrote:
Something like this then: model a1 a2 a3 = prom | minibal | minibal2 ? This syntax does not seem right to me, because I want to account for prom | minibal and for prom | minibal2, but I do not care for minibal | minibal2.

Correct syntax

prom|minbal minbal2 prom*minbal2

 

--
Paige Miller

View solution in original post

9 REPLIES 9
PaigeMiller
Diamond | Level 26

In your problem description, did you miss-state the independent and dependent variables?

--
Paige Miller
pink_poodle
Barite | Level 11

This is not my example, I took it from SAS blog:

https://blogs.sas.com/content/sastraining/2011/02/02/the-punchline-manova-or-a-mixed-model/

"In order to increase the amount of money customers deposit in three different account types, a bank designs a factorial experiment with two factors: promotion (Gift or Discount) and minimum balance ($75, $125, or $225).

model a1 a2 a3= promotion|minbal ;

Then, I would just include the confounder on the left side with other independent variables?

In that case, I do not understand the difference between factor and covariate in MANCOVA...

PaigeMiller
Diamond | Level 26

It doesn't matter if it is your example or not. What variable(s) are independent? What variable(s) are dependent? You need to determine this, and only then can you figure out what goes where in the MODEL statement.

 

Independent variables go to the right of the equal sign in the MODEL statement. Dependent variables go to the left of the equal sign in the MODEL statement.

--
Paige Miller
pink_poodle
Barite | Level 11

Thank you, @PaigeMiller

in this example, I am setting up for MANCOVA like this:

                                                  model a1 a2 a3 = prom | minibal

  • a1 a2 a3 are the continuous response variables, also known as the dependent variables (DV); because they are multiple, it turns ANOVA into MANOVA
  • prom is a discrete categorical group variable, an independent variable (IV) on the x-axis, with promotion 'yes' or 'no' levels or factors
  • minibal is a continuous independent variable, a covariate that confounds the relationship between a-variables and prom, turning MANOVA into MANCOVA*

*I know in SAS blog it is another categorical IV for a two-way ANOVA, but in my example I want it to be a continuous IV, a.k.a. covariate.

By the way, without its categorical IV (that leaves just the covariate IV), ANCOVA turns into linear regression (Check!).

My question is this: Suppose there is another continuous IV, a confounder minibal2. How would I represent it in the model? I read somewhere that SAS can adjust for one confounder at a time for ANCOVA, but I am hoping this is not true or that there is some kind of work-around.     

P.S. This site is very helpful: http://www.statsmakemecry.com/smmctheblog/stats-soup-anova-ancova-manova-mancova           

PaigeMiller
Diamond | Level 26

@pink_poodle wrote:

 

My question is this: Suppose there is another continuous IV, a confounder minibal2. How would I represent it in the model? I read somewhere that SAS can adjust for one confounder at a time for ANCOVA, but I am hoping this is not true or that there is some kind of work-around.        


I am not aware of any such restriction, I have seen people model with multiple confounding variables.

--
Paige Miller
pink_poodle
Barite | Level 11
Something like this then: model a1 a2 a3 = prom | minibal | minibal2 ? This syntax does not seem right to me, because I want to account for prom | minibal and for prom | minibal2, but I do not care for minibal | minibal2.
PaigeMiller
Diamond | Level 26

@pink_poodle wrote:
Something like this then: model a1 a2 a3 = prom | minibal | minibal2 ? This syntax does not seem right to me, because I want to account for prom | minibal and for prom | minibal2, but I do not care for minibal | minibal2.

Correct syntax

prom|minbal minbal2 prom*minbal2

 

--
Paige Miller
pink_poodle
Barite | Level 11
Thank you, I have some followup questions:
What is the meaning of the corrected syntax? What is the difference between vertical line and an asterisk? Why do you have to write minbal2 separately? Will it give me a separate set of results for prom | minbal and prom*minbal2?
PaigeMiller
Diamond | Level 26

prom|minbal <== creates terms prom and minbal and prom*minbal

 

minbal2 <== model term minbal2

 

prom*minbal2 <== model term prom*minbal2

 

So, this is the same as if you had typed

 

prom minbal minbal2 prom*minbal prom*minbal2

--
Paige Miller

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!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 9 replies
  • 1882 views
  • 4 likes
  • 2 in conversation