Hi All -- Can someone provide me with a bit of a pointer in how to deal with the following. I am not even quite sure what terms to search on! Here is my problem. In a preliminary analysis, I tabled (using -table-) a set of -xtlogit- results using code like this:
Now, I want to refit those models after multiple imputation, i.e.,
But, the -table- function does not do that with results from -mi estimate- .. Any hints on how to get started handling this? -- Paul
Code:
table (colname result) (command) , /// command(_r_b _r_ci : xtlogit RESP var1 var2 , nmp or /// command(_r_b _r_ci : xtlogit RESP var1 var3 , nmp or /// ... cidelimiter("") /// nformat(%6.2f) /* sformat("(%s)" _r_se) */ style(table-reg3)
Code:
table (colname result) (command) , /// command(_r_b _r_ci : mi estimate , or : xtlogit RESP var1 var2 , nmp /// command(_r_b _r_ci : mi estimate , or : xtlogit RESP var1 var3 , nmp /// ... cidelimiter("") /// nformat(%6.2f) /* sformat("(%s)" _r_se) */ style(table-reg3)
Comment