Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • -table- with results from models after imputation

    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:

    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)
    Now, I want to refit those models after multiple imputation, i.e.,

    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)
    But, the -table- function does not do that with results from -mi estimate- .. Any hints on how to get started handling this? -- Paul

  • #2
    You probably need the -post- option of mi estimate. See

    Code:
    help mi estimate


    Comment

    Working...
    X