home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / survival4 / print.survfit < prev    next >
Encoding:
Text File  |  1997-09-13  |  2.1 KB  |  52 lines

  1.     
  2.     _S_h_o_r_t _s_u_m_m_a_r_y _o_f _a _s_u_r_v_i_v_a_l _c_u_r_v_e _P_r_i_n_t _n_u_m_b_e_r _o_f _o_b_s_e_r_v_a_-
  3.     _t_i_o_n_s, _n_u_m_b_e_r _o_f _e_v_e_n_t_s,
  4.         _m_e_a_n _s_u_r_v_i_v_a_l _a_n_d _i_t_s _s_t_a_n_d_a_r_d _e_r_r_o_r,  _a_n_d _t_h_e _m_e_d_i_a_n
  5.     _s_u_r_v_i_v_a_l
  6.         _w_i_t_h _c_o_n_f_i_d_e_n_c_e _l_i_m_i_t_s _f_o_r _t_h_e _m_e_d_i_a_n.
  7.     
  8.          print.survfit(fit, scale=1)
  9.     
  10.     _A_r_g_u_m_e_n_t_s:
  11.     
  12.               fit:
  13.          the result of a call to the survfit function.
  14.     
  15.             scale:
  16.          rescale the survival time, e.g., if the input data to
  17.          survfit were in days, scale=365 would scale the prin-
  18.          tout to years.
  19.     
  20.          Value:
  21.     
  22.          x, with the invisible flag set to prevent printing.
  23.     
  24.          the number of observations, the number of events, the
  25.          mean survival and its standard error, and the median
  26.          survival with its confidence interval are printed.  If
  27.          there are multiple curves, there is one line of output
  28.          for each.  The mean and its variance are based on a
  29.          truncated estimator.  That is, if the last
  30.          observation(s) is not a death, then the survival curve
  31.          estimate does not go to zero and the mean is undefined.
  32.          In such a case, the estimator is based on an assumption
  33.          that the true curve goes to zero just beyond the last
  34.          observed follow up time; it will systematically
  35.          underestimate the true mean.  The median and its confi-
  36.          dence interval are defined by drawing a horizontal line
  37.          at 0.5 on the plot of the survival curve and it's con-
  38.          fidence bands.  The intersection of the line with the
  39.          lower CI band defines the lower limit for the median's
  40.          interval, and similarly for the upper band.  If any of
  41.          the intersections is not a point, then we use the smal-
  42.          lest point of intersection, e.g., if the survival curve
  43.          were exactly equal to 0.5 over an interval.
  44.     
  45.          References:
  46.     
  47.          Miller, Rupert G Jr. (1981) Survival Analysis, Wiley,
  48.          New York, p 71.
  49.     
  50.          summary.survfit
  51.     
  52.