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 / summary.survfit < prev    next >
Encoding:
Text File  |  1997-09-13  |  2.4 KB  |  81 lines

  1.     
  2.     _P_r_i_n_t _a _S_u_r_v_i_v_a_l _C_u_r_v_e _R_e_t_u_r_n_s _a _l_i_s_t _c_o_n_t_a_i_n_i_n_g _t_h_e _s_u_r_-
  3.     _v_i_v_a_l _c_u_r_v_e, _c_o_n_f_i_d_e_n_c_e _l_i_m_i_t_s _f_o_r _t_h_e _c_u_r_v_e, _a_n_d _o_t_h_e_r
  4.     _i_n_f_o_r_m_a_t_i_o_n.
  5.     
  6.          summary.survfit(fit, times, censored=F, scale=1)
  7.     
  8.     _A_r_g_u_m_e_n_t_s:
  9.     
  10.               fit:
  11.          output from a call to survfit.
  12.     
  13.             times:
  14.          vector of the times; the returned matrix will contain 1
  15.          row for each time.  This must be in increasing order
  16.          and missing values are not allowed.  If censored=T, the
  17.          default time vector contains all the unique times in
  18.          fit.list, otherwise the default time vector uses only
  19.          the event (death) times.
  20.     
  21.          censored:
  22.          logical flag: should the censoring times be included in
  23.          the output?  This is ignored if the times argument is
  24.          present.
  25.     
  26.             scale:
  27.          rescale the survival time, e.g., if the input data to
  28.          survfit were in days, "scale=365" would scale the prin-
  29.          tout to years.
  30.     
  31.          Value:
  32.     
  33.          a list with the following components
  34.     
  35.     _A_r_g_u_m_e_n_t_s:
  36.     
  37.              time:
  38.          the timepoint on the curve.
  39.     
  40.              surv:
  41.          the value of the survival curve at time t+0.
  42.     
  43.            n.risk:
  44.          the number of subjects at risk at time t-0 (but see the
  45.          comments on weights in the survfit help file).
  46.     
  47.           n.event:
  48.          if the times argument is missing, then this column is
  49.          the number of events that occurred at time t.  Other-
  50.          wise, it is the cumulative number of events that have
  51.          occurred since the last time listed until time t+0.
  52.     
  53.           std.dev:
  54.          the standard deviation of the survival value.
  55.     
  56.          lower CI:
  57.          lower confidence limits for the curve.
  58.     
  59.          upper CI:
  60.          upper confidence limits for the curve.
  61.     
  62.            strata:
  63.          the number of points per curve.  If there are multiple
  64.          curves in this result, then the time, surv, etc vectors
  65.          will contain multiple curves, pasted end to end, and
  66.          length(surv)=sum(strata).  The names of the strata vec-
  67.          tor are the labels for the curves.
  68.     
  69.              call:
  70.          the statement used to create the fit object.
  71.     
  72.         na.action:
  73.          passed through from fit, if present.
  74.     
  75.          survfit, 'print.summary.survfit'.
  76.     
  77.     _E_x_a_m_p_l_e_s:
  78.     
  79.          summary( survfit( futime, fustat))
  80.     
  81.