immer package:MASS R Documentation _Y_i_e_l_d_s _f_r_o_m _a _B_a_r_l_e_y _F_i_e_l_d _T_r_i_a_l _D_e_s_c_r_i_p_t_i_o_n: The 'immer' data frame has 30 rows and 4 columns. Five varieties of barley were grown in six locations in each of 1931 and 1932. _U_s_a_g_e: immer _F_o_r_m_a_t: This data frame contains the following columns: '_L_o_c' The location. '_V_a_r' The variety of barley ('"manchuria"', '"svansota"', '"velvet"', '"trebi"' and '"peatland"'). '_Y_1' Yield in 1931. '_Y_2' Yield in 1932. _S_o_u_r_c_e: Immer, F.R., Hayes, H.D. and LeRoy Powers (1934) Statistical determination of barley varietal adaptation. _Journal of the American Society for Agronomy_ *26*, 403-419. Fisher, R.A. (1947) _The Design of Experiments._ 4th edition. Edinburgh: Oliver and Boyd. _R_e_f_e_r_e_n_c_e_s: Venables, W. N. and Ripley, B. D. (1999) _Modern Applied Statistics with S-PLUS._ Third Edition. Springer. _E_x_a_m_p_l_e_s: immer.aov <- aov(cbind(Y1,Y2) ~ Loc + Var, data = immer) summary(immer.aov) immer.aov <- aov((Y1+Y2)/2 ~ Var + Loc, data = immer) summary(immer.aov) model.tables(immer.aov, type = "means", se = TRUE, cterms = "Var")