varFixed                package:nlme                R Documentation

_F_i_x_e_d _V_a_r_i_a_n_c_e _F_u_n_c_t_i_o_n

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

     This function is a constructor for the 'varFixed' class,
     representing a variance function with fixed variances. Letting v
     denote the variance covariate defined in 'value', the variance
     function s2(v) for this class is s2(v)=|v|. The variance covariate
     v is evaluated once at initialization and remains fixed
     thereafter. No coefficients are required to represent this
     variance function.

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

     varFixed(value)

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

   value: a one-sided formula of the form '~ v' specifying a variance
          covariate 'v'. Grouping factors are ignored.

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

     a 'varFixed' object representing a fixed variance function
     structure, also inheriting from class 'varFunc'.

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

     Jose Pinheiro Jose.Pinheiro@pharma.novartis.com and Douglas Bates
     bates@stat.wisc.edu

_R_e_f_e_r_e_n_c_e_s:

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

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

     'varClasses', 'varWeights.varFunc', 'varFunc'

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

     vf1 <- varFixed(~age)

