Using Stata 14.1 MP under Win 7E. I've been tinkering with the apc_ie.ado for a while (http://econpapers.repec.org/software...de/s456754.htm). It was not originally set up for survey analysis, but adding svyopts at the top so that the options part of estimate portion of the code can pick it up seems to have done the trick:
The problem is that no post-estimation is available. I've managed to work around that problem for most things, but now I need to obtain estat effects. I think the code could be modified to obtain these values, but that exceeds my programming skills. There's a section that saves scalars and it could probably be written into that portion of the code. I think it would be nice to have survey information as well like e(N_sub), e(N_subpop), e(N) and e(N_pop). Can someone point me in the right direction?
Code:
[code omitted] syntax varlist(numeric ts) [fw aw pw iw] [if] [in], [age(varname numeric) period(varname numeric) cohort(varname numeric) GENerate(name) eigenvectors_in(name) eigenvectors_out(name) design_in(name) design_out(name) xe_in(name) xe_out(name) noCONStant EXPosure(varname numeric) OFFset(varname numeric) SCAle(string) LEvel(cilevel) EForm noHEADer notable svyopts(string) *]; [code omitted]

Comment