Dear all,
As part of a larger program, I want to return estimated values and a variance-covariance matrix.
In most cases this works well, but sometimes the e(V) matrix is completely empty, even though it shouldn't be.
If the negative off-diagonal element is absent, this behavior does not occur. But, as the original matrix was created with standard Stata commands, I don't see any problem with that per se.
What am I missing?
Thank you very much!
Felix
As part of a larger program, I want to return estimated values and a variance-covariance matrix.
Code:
noi mat list V ereturn post b V, obs(`N_obs') findomitted depname("`depvar'") properties("b V") noi mat list e(V)
Code:
symmetric V[4,4] 1o. 1o. 1.treat# treat post 1.post _cons 1o.treat 0 1o.post 0 0 1.treat# 1.post 0 0 .00005276 _cons 0 0 -.0000137 3.548e-06 symmetric e(V)[4,4] 1o. 1o. 1.treat# treat post 1.post _cons 1o.treat 0 1o.post 0 0 1.treat# 1.post 0 0 0 _cons 0 0 0 0
What am I missing?
Thank you very much!
Felix
Comment