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:
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!