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

I’m conducting a tobit model using proc nlmixed, and was wondering how to interpret the variance parameter. Here is my model:

 

proc nlmixed data=mydat XTOL=1E-12 method=GAUSS qpoints=100;
parms b0=1.6 b1=-.04 sigma2_u=2 sigma2=5;
bounds sigma2_u sigma2 >=0;
pi = constant("pi");
mu = b0 + b_0j + b1*time;
if log_y > 0 then 
ll = (1 / (sqrt(2*pi*sigma2))) * exp( -(log_y-mu)**2 / (2*sigma2) );
if log_y = 0 then 
ll = probnorm( (log_y - mu) / sqrt(sigma2) );
L = log(ll);
model log_y ~ general(L);
random b_0j ~ normal(0, sigma2_u) subject=id;
run;
quit;

 

And my output:

Screen Shot 2021-01-08 at 10.42.30 AM.png

 

How do I interpret the significant, fixed and random variance parameters (sigma2, sigma2_u)? Does a significant value mean the variance is larger than expected, or something else?

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SteveDenham
Jade | Level 19

The tests are about a null hypothesis of the parameter being zero.  If you wish to test against some other value, you would have to re-parameterize the model.

 

SteveDenham

View solution in original post

1 REPLY 1
SteveDenham
Jade | Level 19

The tests are about a null hypothesis of the parameter being zero.  If you wish to test against some other value, you would have to re-parameterize the model.

 

SteveDenham

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

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