fixef                  package:lme4                  R Documentation

_E_x_t_r_a_c_t _F_i_x_e_d _E_f_f_e_c_t_s

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

     Extract the estimates of the fixed effects parameters from a
     fitted model.

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

     fixef(object, ...)
     fixed.effects(object, ...)  # deprecated

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

  object: any fitted model object from which fixed effects estimates
          can be extracted.

     ...: optional additional arguments. Currently none are used in any
          methods.

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

     a named numeric vector of fixed effects estimates.

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

     fixef(lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy))

