https://github.com/cran/MuMIn
Raw File
Tip revision: 2703769fe3df864cbb0865fbb4e53f0d12a3d577 authored by Kamil BartoĊ„ on 01 April 2012, 00:00:00 UTC
version 1.7.7
Tip revision: 2703769
coeffs.R
`coeffs` <-
function (model) UseMethod("coeffs")

`coeffs.gls` <-
function (model) summary(model)$coefficients

`coeffs.lme` <-
function(model) model$coefficients$fixed

# `coeffs.glmer` <-
# `coeffs.lmer` <-
# function(model) {
	# ret <- model@fixef
	# names(ret) <- model@cnames$.fixed
	# return(ret)
# }

`coeffs.mer` <-
function(model) model@fixef

`coeffs.default` <-
function(model) coef(model)
back to top