allCoef                 package:nlme                 R Documentation

_E_x_t_r_a_c_t _C_o_e_f_f_i_c_i_e_n_t_s _f_r_o_m _a _S_e_t _o_f _O_b_j_e_c_t_s

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

     The extractor function is applied to each object in `...', with
     the result being converted to a vector. A `map' attribute is
     included to indicate which pieces of the returned vector
     correspond to the original objects in `...'.

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

     allCoef(..., extract)

_A_r_g_u_m_e_n_t_s:

     ...: objects to which `extract' will be applied. Generally these
          will be model components, such as `corStruct' and `varFunc'
          objects.

 extract: an optional extractor function. Defaults to `coef'.

_V_a_l_u_e:

     a vector with all elements, generally coefficients, obtained by
     applying `extract' to the objects in `...'.

_A_u_t_h_o_r(_s):

     Jose' Pinheiro and Douglas Bates

_S_e_e _A_l_s_o:

     `lmeStruct',`nlmeStruct'

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

     cs1 <- corAR1(0.1)
     vf1 <- varPower(0.5)
     allCoef(cs1, vf1)

