https://github.com/cran/MuMIn
Raw File
Tip revision: 42eef3ebb86445b060c28bed6e059ed25ce351d0 authored by Kamil BartoĊ„ on 28 May 2010, 06:55:42 UTC
version 0.12.2
Tip revision: 42eef3e
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