gehan                  package:MASS                  R Documentation

_R_e_m_i_s_s_i_o_n _T_i_m_e_s _o_f _L_e_u_k_a_e_m_i_a _P_a_t_i_e_n_t_s

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

     A data frame from a trial of 42 leukaemia patients. Some were
     treated with the drug _6-mercaptopurine_ and the rest are
     controls.  The trial was designed as matched pairs, both withdrawn
     from the trial when either came out of remission.

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

     gehan

_F_o_r_m_a_t:

     This data frame contains the following columns:

     '_p_a_i_r' label for pair

     '_t_i_m_e' remission time in weeks

     '_c_e_n_s' censoring, 0/1

     '_t_r_e_a_t' treatment, control or 6-MP

_S_o_u_r_c_e:

     Cox, D. R. and Oakes, D. (1984) _Analysis of Survival Data._
     Chapman & Hall, p. 7. Taken from

     Gehan, E.A. (1965) A generalized Wilcoxon test for comparing
     arbitrarily single-censored samples. _Biometrika_ *52*, 203-233.

_R_e_f_e_r_e_n_c_e_s:

     Venables, W. N. and Ripley, B. D. (2002) _Modern Applied
     Statistics with S._ Fourth edition.  Springer.

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

     library(survival)
     gehan.surv <- survfit(Surv(time, cens) ~ treat, data = gehan,
          conf.type = "log-log")
     summary(gehan.surv)
     survreg(Surv(time, cens) ~ factor(pair) + treat, gehan, dist = "exp")
     summary(survreg(Surv(time, cens) ~ treat, gehan, dist = "exp"))
     summary(survreg(Surv(time, cens) ~ treat, gehan))
     gehan.cox <- coxph(Surv(time, cens) ~ treat, gehan)
     summary(gehan.cox)

