UKLungDeaths              package:stats              R Documentation

_M_o_n_t_h_l_y _D_e_a_t_h_s _f_r_o_m _L_u_n_g _D_i_s_e_a_s_e_s _i_n _t_h_e _U_K

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

     Three time series giving the monthly deaths from bronchitis,
     emphysema and asthma in the UK, 1974-1979, both sexes ('ldeaths'),
     males ('mdeaths') and females ('fdeaths').

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

     data(UKLungDeaths)

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

     P. J. Diggle (1990) _Time Series: A Biostatistical Introduction._
     Oxford, table A.3

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

     data(UKLungDeaths)
     plot(ldeaths) 
     plot(mdeaths, fdeaths) 
     ## Better labels:
     yr <- floor(tt <- time(mdeaths))
     plot(mdeaths, fdeaths,
          xy.labels = paste(month.abb[12*(tt - yr)], yr-1900, sep="'"))

