coef                package:scaleboot                R Documentation

_E_x_t_r_a_c_t _M_o_d_e_l _C_o_e_f_f_i_c_i_e_n_t_s

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

     Extract the estimated parameters from '"scaleboot"' or
     '"scalebootv"' objects.

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

     ## S3 method for class 'scaleboot':
     coef(object,sd=FALSE,...)

     ## S3 method for class 'scalebootv':
     coef(object,...)

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

  object: an object used to select a method.

     ...: further arguments passed to or from other methods.

      sd: logical. Should standard errors be returned as well?

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

     The 'coef' method for the class '"scaleboot"' returns a matrix
     consisting of row vectors of beta's for models. If 'sd=TRUE', it
     returns a list with components 'estimate' and 'sd' for the beta
     matrix and its standard error respectively.

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

     Hidetoshi Shimodaira

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

     'sbfit'

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

     data(mam15)
     a <- mam15.relltest[["t4"]] # an object of class "scaleboot"
     coef(a) # print the estimated beta values
     coef(a,sd=TRUE) # with sd

