Pixel                  package:nlme                  R Documentation

_X-_r_a_y _p_i_x_e_l _i_n_t_e_n_s_i_t_i_e_s _o_v_e_r _t_i_m_e

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

     The `Pixel' data frame has 102 rows and 4 columns of data on the
     pixel intensities of CT scans of dogs over time

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

     This data frame contains the following columns:

     _D_o_g a factor with levels `1' to `10' designating the dog on which
          the scan was made

     _S_i_d_e a factor with levels `L' and `R' designating the side of the
          dog being scanned

     _d_a_y a numeric vector giving the day post injection of the contrast
          on which the scan was made

     _p_i_x_e_l a numeric vector of pixel intensities

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

     Pinheiro, J. C. and Bates, D. M. (2000) Mixed-effects Models in S
     and S-PLUS, Springer.

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

     data(Pixel)
     fm1 <- lme(pixel ~ day + I(day^2), data = Pixel,
                random = list(Dog = ~ day, Side = ~ 1))
     summary(fm1)
     VarCorr(fm1)

