se.fixef {influence.ME}R Documentation

Standard errors of fixed estimates

Description

Returns the standard errors of the fixed estimates in a mixed effects model.

Usage

se.fixef(model)

Arguments

model

Mixed effects regression model of class 'mer'

Value

A vector with the standard errors of the fixed parameters of the model.

Note

This is a small helper-function to the influence.ME package. For more elaborate functionality, refer to the se.fixef function in the 'car' package.

Author(s)

Rense Nieuwenhuis, Ben Pelzer, Manfred te Grotenhuis

Examples

## Not run: 
data(school23)
model <- lmer(math ~  homework + structure + (1 | school.ID), data=school23)
summary(model)
se.fixef(model)

## End(Not run)

[Package influence.ME version 0.9-9 Index]