https://github.com/cran/MuMIn
Raw File
Tip revision: e30c3dd807680fd7d3621d994f8d932ad77bd505 authored by Kamil BartoĊ„ on 19 October 2011, 10:07:01 UTC
version 1.5.0
Tip revision: e30c3dd
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