Pixel                 package:MEMSS                 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

     _D_S the interaction of the 'Dog' and 'Side' factors. This provides
          a grouping factor with a unique level for each side within
          each dog.

_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:

     options(show.signif.stars = FALSE)
     str(Pixel)
     summary(Pixel)
     (fm1 <- lmer(pixel ~ day + I(day^2) + (1|DS) + (day|Dog), Pixel))

