summary.gcmrec            package:gcmrec            R Documentation

_s_u_m_m_a_r_y _o_f '_g_c_m_r_e_c'

_D_e_s_c_r_i_p_t_i_o_n:

     This function returns hazard rations (HR) and its confidence
     intervals

_U_s_a_g_e:

     ## S3 method for class 'gcmrec':
     summary(object, level = 0.95, len = 6, d = 2, lab="hr", ...)

_A_r_g_u_m_e_n_t_s:

  object: output from a call to gcmrec.

   level: significance level of confidence interval. Default is 95%.

     len: the desired number of digits after the decimal point. Default
          of 6 digits is used.

       d: the total field width. Default is 6.

     lab: label of printed results.

     ...: other unusued arguments.

_D_e_t_a_i_l_s:

     This function calls to intervals.gcmrec

_V_a_l_u_e:

     Prints HR and its confidence intervals. Confidence level is
     allowed (level argument)

_S_e_e _A_l_s_o:

     'intervals.gcmrec'

_E_x_a_m_p_l_e_s:

     data(lymphoma)
     mod<-gcmrec(Survr(id,time,event)~as.factor(distrib),data=lymphoma,s=1000)
     summary(mod)

     # confidence interval at 99

     summary(mod,level=0.99)

