Extract the fixed-effects estimates from a fitted random effects model
fixef-actuaRE.Rd
A generic function to extract the fixed effects (i.e. the company-specific effects) estimates from a fitted random effects model.
Arguments
- object
an object of type
hierCredGLM
orhierCredTweedie
- ...
ignored.
Examples
# \donttest{
fit = hierCredGLM(Y ~ area + (1 | VehicleType / VehicleBody), dataCar,
weights = w, p = 1.75, epsilon = 1e-6)
#> Error in hierCredGLM(Y ~ area + (1 | VehicleType/VehicleBody), dataCar, weights = w, p = 1.75, epsilon = 1e-06): Did not find the variables in the formula in the dataframe
fixef(fit)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'object' in selecting a method for function 'fixef': object 'fit' not found
# }