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

Hello 🙂

 

I lanched this code to perform a TUKEY test :

 

 

ods graphics on;
proc glm data=HAVE order=internal;
class X1-X15;
model TI_NUM = X1-X15 ;
lsmeans X2 / diff adjust=tukey;
run;
quit;
title;

 

And the Tukey test display this to me :

FORUM.PNG

 I do have the matrix for difference of the LS-MEANS but it says the ls means are not estimated. 

I precise that when performing the proc glm without the statement "lsmeans" i do get all my coefficients... 

 

Thank you by advance for your help.

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

"Non-est" usually happens because the model cannot fit all of the requested model terms, in this case X1-X15, often because of collinearity or missing cells.

--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

"Non-est" usually happens because the model cannot fit all of the requested model terms, in this case X1-X15, often because of collinearity or missing cells.

--
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
  • 1 reply
  • 399 views
  • 1 like
  • 2 in conversation