BookmarkSubscribeRSS Feed
AndreyMyslivets
Obsidian | Level 7

Hello everyone,

 

Could you please help me with following question?

Some time ago the study was conducted and analyzed in SAS 9.3 and one of the analyses was provided using the following script:

 

ods output Tests3 = ANOVA ;
proc glimmix data = cols1 ;
  class q1 y site usubjid;
  model  chis12 =  q1 y q1*y site chis /  dist=negbin offset = offs  ;
  random y  / subject=usubjid type=ar(1) solution ;
  lsmeans q1*y/ diff cl ; 
run;

At the moment the data with absolutely the same nature was collected and after running the SAS code on the new data,  we have the following results:

 

 

photo_2019-03-15_10-11-33.jpg

 

photo_2019-03-15_10-11-23.jpg

Could you please help to understand why there are no p-values for each effect? What is the best option for checking the data in this situation and what conclusions we can make here?

 

P.S. if you see any mistakes, please highlight it.

 

Thanks!

1 REPLY 1
PaigeMiller
Diamond | Level 26

You have zero degrees of freedom for the denominator, so no F-test is possible.

 

Now, why might you have zero degrees of freedom for the denominator? It depends on the design of the study, and how many data points you have and how much true replication you have. Those are things we can't answer without a lot more information from you.

--
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
  • 614 views
  • 2 likes
  • 2 in conversation