	
	_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_-
	_t_i_o_n_s, _n_u_m_b_e_r _o_f _e_v_e_n_t_s,
	    _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
	_s_u_r_v_i_v_a_l
	    _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.
	
	     print.survfit(fit, scale=1)
	
	_A_r_g_u_m_e_n_t_s:
	
	          fit:
	     the result of a call to the survfit function.
	
	        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:
	
	     x, with the invisible flag set to prevent printing.
	
	     the number of observations, the number of events, the
	     mean survival and its standard error, and the median
	     survival with its confidence interval are printed.  If
	     there are multiple curves, there is one line of output
	     for each.  The mean and its variance are based on a
	     truncated estimator.  That is, if the last
	     observation(s) is not a death, then the survival curve
	     estimate does not go to zero and the mean is undefined.
	     In such a case, the estimator is based on an assumption
	     that the true curve goes to zero just beyond the last
	     observed follow up time; it will systematically
	     underestimate the true mean.  The median and its confi-
	     dence interval are defined by drawing a horizontal line
	     at 0.5 on the plot of the survival curve and it's con-
	     fidence bands.  The intersection of the line with the
	     lower CI band defines the lower limit for the median's
	     interval, and similarly for the upper band.  If any of
	     the intersections is not a point, then we use the smal-
	     lest point of intersection, e.g., if the survival curve
	     were exactly equal to 0.5 over an interval.
	
	     References:
	
	     Miller, Rupert G Jr. (1981) Survival Analysis, Wiley,
	     New York, p 71.
	
	     summary.survfit
	
