Announcement

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

  • Option for reporting HR, CI instead of coeffficients in collect code

    Hello all:

    I am learning collect and styles and have tried to change the code to report exponentiated coefficients and 95% CI of HR instead of coefficients. I cannot figure out where in the code I make this change. I tried fiddling with those red ones below converting them to exp(_r_b) but table still shows only coefficients.

    clear
    webuse stan2
    stset stime, failure(died)

    table () (command result), ///
    command(_r_b _r_se _r_z _r_p _r_ci ///
    : stcox transplant wait) ///
    nformat(%5.2f _r_b _r_se _r_ci ) ///
    nformat(%5.4f _r_p) ///
    sformat("[%s]" _r_ci ) ///
    cidelimiter(,) ///
    style(C:\Users\Vijayalakshmi\Documents\gvcoxstyle. stjson, override) ///
    label(C:\Users\Vijayalakshmi\Documents\gvcoxLabels .stjson)
Working...
X