Hello,
I am using FMM in stata 16, I am working with someone else's code, who used the previous fmm user generated package, in stata 14.
The code grabs the mean and sd from the fmm estimations. It also grabs the e(pi1_est)
I am just wondering what this e(pi_est) refers to? I cannot find it in the list of stored results in the fmm manual in stata, or in the result table.
See code below:
gen var_mean = _b[component2:_cons]
gen var_sd = e(sigma2_est)
gen var_p = e(pi1_est)
Any help would be much appreciated.
I am using FMM in stata 16, I am working with someone else's code, who used the previous fmm user generated package, in stata 14.
The code grabs the mean and sd from the fmm estimations. It also grabs the e(pi1_est)
I am just wondering what this e(pi_est) refers to? I cannot find it in the list of stored results in the fmm manual in stata, or in the result table.
See code below:
gen var_mean = _b[component2:_cons]
gen var_sd = e(sigma2_est)
gen var_p = e(pi1_est)
Any help would be much appreciated.
Comment