freeny                 package:base                 R Documentation

_F_r_e_e_n_y'_s _R_e_v_e_n_u_e _D_a_t_a

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

     Freeny's data on quarterly revenue and explanatory variables.

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

     data(freeny)

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

     There are three `freeny' data sets.

     `freeny.y' is a time series with 39 observations on quarterly
     revenue from (1962,2Q) to (1971,4Q).

     `freeny.x' is a matrix of explanatory variables.  The columns are
     `freeny.y' lagged 1 quarter, price index, income level, and market
     potential.

     Finally, `freeny' is a data frame with variables `y',
     `lag.quarterly.revenue', `price.index', `income.level', and
     `market.potential' obtained from the above two data objects.

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

     A. E. Freeny (1977) A Portable Linear Regression Package with Test
     Programs. Bell Laboratories memorandum.

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

     data(freeny)
     summary(freeny)
     pairs(freeny, main = "freeny data")
     summary(fm1 <- lm(y ~ ., data = freeny))
     opar <- par(mfrow = c(2, 2), oma = c(0, 0, 1.1, 0),
                 mar = c(4.1, 4.1, 2.1, 1.1))
     plot(fm1)
     par(opar)

