WorldPhones             package:datasets             R Documentation

_T_h_e _W_o_r_l_d'_s _T_e_l_e_p_h_o_n_e_s

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

     The number of telephones in various regions of the world (in
     thousands).

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

     phones

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

     A matrix with 7 rows and 8 columns.  The columns of the matrix
     give the figures for a given region, and the rows the figures for
     a year.

     The regions are: North America, Europe, Asia, South America,
     Oceania, Africa, Central America.

     The years are: 1951, 1956, 1957, 1958, 1959, 1960, 1961.

_W_a_r_n_i_n_g:

     Prior to R 2.0.0 this dataset was called 'phones' and conflicted
     with a dataset in package 'MASS'.

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

     AT&T (1961) _The World's Telephones_.

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

     McNeil, D. R. (1977) _Interactive Data Analysis_. New York: Wiley.

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

     matplot(rownames(WorldPhones), WorldPhones, type = "b", log = "y",
             xlab = "Year", ylab = "Number of telephones (1000's)")
     legend(1951.5, 80000, colnames(WorldPhones), col = 1:6, lty = 1:5, 
            pch = rep(21, 7))
     title(main = "World phones data: log scale for response")

