	
	_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_-
	_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
	_i_n_f_o_r_m_a_t_i_o_n.
	
	     summary.survfit(fit, times, censored=F, scale=1)
	
	_A_r_g_u_m_e_n_t_s:
	
	          fit:
	     output from a call to survfit.
	
	        times:
	     vector of the times; the returned matrix will contain 1
	     row for each time.  This must be in increasing order
	     and missing values are not allowed.  If censored=T, the
	     default time vector contains all the unique times in
	     fit.list, otherwise the default time vector uses only
	     the event (death) times.
	
	     censored:
	     logical flag: should the censoring times be included in
	     the output?  This is ignored if the times argument is
	     present.
	
	        scale:
	     rescale the survival time, e.g., if the input data to
	     survfit were in days, "scale=365" would scale the prin-
	     tout to years.
	
	     Value:
	
	     a list with the following components
	
	_A_r_g_u_m_e_n_t_s:
	
	         time:
	     the timepoint on the curve.
	
	         surv:
	     the value of the survival curve at time t+0.
	
	       n.risk:
	     the number of subjects at risk at time t-0 (but see the
	     comments on weights in the survfit help file).
	
	      n.event:
	     if the times argument is missing, then this column is
	     the number of events that occurred at time t.  Other-
	     wise, it is the cumulative number of events that have
	     occurred since the last time listed until time t+0.
	
	      std.dev:
	     the standard deviation of the survival value.
	
	     lower CI:
	     lower confidence limits for the curve.
	
	     upper CI:
	     upper confidence limits for the curve.
	
	       strata:
	     the number of points per curve.  If there are multiple
	     curves in this result, then the time, surv, etc vectors
	     will contain multiple curves, pasted end to end, and
	     length(surv)=sum(strata).  The names of the strata vec-
	     tor are the labels for the curves.
	
	         call:
	     the statement used to create the fit object.
	
	    na.action:
	     passed through from fit, if present.
	
	     survfit, 'print.summary.survfit'.
	
	_E_x_a_m_p_l_e_s:
	
	     summary( survfit( futime, fustat))
	
