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

Hi friends,

I am trying to estimate a linear mixed model for treatments arranged in CRD using SAS using proc mixed or proc glimmix. I have 3 categorical factors A, B and C where factor C is assumed random, and A,B are fixed. My data set looks like this:

Lyson_0-1721308307376.png

 

The  syntaxes that I am exploring are:

a) PROC GLIMMIX

proc glimmix data=FFRgroup outdesign=XZ;;
class factorA factorB factorC  groupA groupB groupC rep;
model yield= groupA | groupB / ddfm=satterthwaite;
random factorC factorA*factorC  factorB*factorC factorA*factorB*factorC /  V;
lsmeans groupA | groupB   / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

whch displays the following V matrix,

Lyson_2-1721307720866.png

 

b) PROC  MIXED:

proc mixed data=FFRgroup ;
class factorA factorB factorC  groupA groupB groupC rep;
model yield= groupA | groupB / ddfm=satterthwaite;
random factorC factorA*factorC  factorB*factorC factorA*factorB*factorC /  V;
lsmeans groupA | groupB   / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

displays the following V matrix,

Lyson_3-1721307827866.png

What could be the problem with these two approaches not producing the covariance structure that aligns with the model in question (block diagonal)? 

 

Thank you in advance for your assistance folks.

1 ACCEPTED SOLUTION

Accepted Solutions
jiltao
SAS Super FREQ

I agree with @Mike_N.

Your first log shows that the final Hessian is not positive definite.

Later, the Log shows that the G matrix is not positive definite.

Your model is likely to be overspecified. You need to take care of your modeling issue first, before attempting to interpret and compare the output.

Simplifying your model, especially your random effects, might be a good place to start.

Thanks,

Jill

 

View solution in original post

11 REPLIES 11
jiltao
SAS Super FREQ

If you rewrite your RANDOM statement below --

random factorC factorA*factorC  factorB*factorC factorA*factorB*factorC

to the one that makes the model to be processed by subjects and is more numerically efficient --

random int factorA  factorB factorA*factorB / subject=factorC v;

in both procedures, then you would probably see the V option displaying the first block (for the first level of FACTORC) of the variance covariance matrix. Do the two procedures give you the same output for the V matrix?

Also the values in the output you show from PROC MIXED look unusually large to me. What do you see in the Log from PROC MIXED? It might be a good idea to examine the logs from both procedures first.

Thanks,

Jill

 

Lyson
Obsidian | Level 7

Hi Jill

 

Thanks for the response. However, I have run both PROC MIXED and PROC GLIMMIX, but the result hasn't changed. I still get a diagonal matrix with single values, part of which is pasted below:

Lyson_0-1721323265869.png

Kindly clarify on the "Log" issue. I do not understand.

Mike_N
SAS Employee

When you use the V option of the random statement in either Proc Glimmix or Proc Mixed, the default behavior is to print out the first (single) block from the V matrix, not the whole block diagonal matrix. However, both procedures are still using block diagonal V. Note that blocks are usually defined by using the subject= option within the random statement. See here SAS Help Center: RANDOM Statement and here SAS Help Center: RANDOM Statement for more details about how to use the subject= statement to specify the blocks of V. 

Lyson
Obsidian | Level 7
Hi Mike,

As suggested by Jil, I have used the following code:
proc mixed data=FFRgroup ;
class factorA factorB factorC groupA groupB groupC repA repB repC;
model yield= groupA | groupB / ddfm=satterthwaite;
random int factorA factorB factorA*factorB/subject=factorC v;
lsmeans groupA | groupB / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

And the results are as follows:
Lyson
Obsidian | Level 7

Lyson_0-1721324780269.pngLyson_1-1721324834044.pngLyson_2-1721324870694.png

V still diagonal though,,,,

Lyson_3-1721324953491.png

Fixed effects look good...

Lyson
Obsidian | Level 7

Hi Jil & Mike,

 

I have created another variable "repA" through "repC" to capture the replications in each treatment cell, e.g., in the first cell I recorded "1, 1, 1, 1, 1" for the five replications in each of the rep variables. Then I had to define the "subject = " statement with  repC, the random variable. Is this in order? the data set, code and output are as shown below:

Lyson_0-1721325610560.png

proc mixed data=FFRgroup ;
class factorA factorB factorC groupA groupB groupC repA repB repC;
model yield= groupA | groupB / ddfm=satterthwaite;
random int factorA factorB factorA*factorB/subject=repC v;
lsmeans groupA | groupB / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

Lyson_1-1721325761653.pngLyson_2-1721325807377.pngLyson_3-1721325874630.pngLyson_4-1721325911225.png

Looks like the V matrix is still a diagonal matrix by default in PROC mixed, as highlighted by Mike.

Mike_N
SAS Employee

Your subject effect, FactorC, has one distinct level. All 120 observations have the value 'ra'. The subject= part of your model is not specified correctly. The documentation links above should help get you back on the right track.   

Lyson
Obsidian | Level 7

Hi Mike,

 

If I put back the original variable names in place of factor A, B and C, the code and output are as follows:

proc mixed data=FFRgroup ;
class Treat Depth Incorp   repA repB repC;
model yield= Treat | Depth / ddfm=satterthwaite;
random  Treat Depth Treat*Depth/subject=Incorp v; 
lsmeans Treat | Depth   / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

Lyson_0-1721327916666.png

 

Similar results, but I notice the "G matrix not positive definite" issue. How can I improve these results around this issue, if at all it is another problem?

Mike_N
SAS Employee

I don't think I completely understand what you mean by the 'original' variable names - but renaming the variables won't fix this issue, if that is your question. You should not ignore the warning about the G matrix and you should likewise take note of all of the zeros in the covariance parameter estimates table. I still suspect your subject effect is misspecified, but I can't tell exactly how without your data. I would suggest first trying to fit a simpler model, such as a random-intercept model. That is 

random int / subject = Incorp v;

Once you get that working, start adding in other random factors. 

jiltao
SAS Super FREQ

I agree with @Mike_N.

Your first log shows that the final Hessian is not positive definite.

Later, the Log shows that the G matrix is not positive definite.

Your model is likely to be overspecified. You need to take care of your modeling issue first, before attempting to interpret and compare the output.

Simplifying your model, especially your random effects, might be a good place to start.

Thanks,

Jill

 

Lyson
Obsidian | Level 7

@jiltao  @Mike_N Thank you so much for the assistance. I finally got the diagonal V matrix in the other models. I will deal with the issue of the G matrix not positive definite by reducing the number of random levels and replications. I highly appreciate your assistance. The following two codes give the same results that I want:

 

proc glimmix data=RFRgroup outdesign=XZ;; 
class Treat Depth Incorp   ;
model yield=  Depth / ddfm=satterthwaite;
random Treat|Incorp Treat*Depth Depth*Incorp Treat*Depth*Incorp /   V ;
lsmeans  Depth  / pdiff cl alpha=0.05 ;
Title "RFR Model";
run;

 

proc mixed data=RFRgroup ;
class Treat Depth Incorp   ;
model yield=  Depth / ddfm=satterthwaite;
random  Treat| Incorp Treat*Depth Depth*Incorp Treat*Depth*Incorp/ v; 
lsmeans  Depth   / pdiff cl alpha=0.05 ;
Title "FFR Model";
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 11 replies
  • 215 views
  • 4 likes
  • 3 in conversation