https://github.com/cran/MuMIn
Raw File
Tip revision: a0f20e50f08f1cb37bc636092dfc8f46eb3f0187 authored by Kamil BartoĊ„ on 14 June 2009, 00:00:00 UTC
version 0.12.2
Tip revision: a0f20e5
coeffs.R
`coeffs.default` <-
function(model) { model$coefficients}

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

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

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

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

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

`coeffs` <-
function (model) UseMethod("coeffs")

`coeffs.spautolm` <-
function(model) { model$fit$coefficients}
back to top