BookmarkSubscribeRSS Feed
hsuhy0914
Calcite | Level 5

Hi, SAS experts,

I have used the following codes to analyze my data:

 

proc mixed data=ABC covtest noclprint noinfo noitprint method=reml;
title3 'TOEP time and time2';
class id ;
model fam_rou=time_c time2_c/ solution notest ddfm=kr ;
random intercept time_c time2_c/ subject=id ;
repeated / type=TOEP subject=ID r;
run;

 

In this analysis, the with-individual residuals covariance matrix was modeled as the toeplitz structure. However, the SE of the residual (sigma2) was 0, leading no z-value and p value. 

 

Does anyone know the reason why I got SE=0 and have any suggestions for addressing this issue? I appreciate it.

1 REPLY 1
Rick_SAS
SAS Super FREQ

In general, an STDDEV or STDERR of 0 indicates that data are constant or constant for some level or strata. For your REPEATED statement, a SE of 0 could indicate that each subject has a constant response. (Or there is only one obs per subject.)

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1055 views
  • 0 likes
  • 2 in conversation