https://github.com/cran/MuMIn
Raw File
Tip revision: cb0ec580f67d5078fbbc1cbc74359abe6aea5210 authored by Kamil BartoĊ„ on 29 October 2013, 10:17:39 UTC
version 1.9.13
Tip revision: cb0ec58
oldR.R
# compatibility with older versions of R
if(!("intercept" %in% names(formals(stats::reformulate)))) {
	`reformulate` <- function (termlabels, response = NULL, intercept = TRUE) {
		ret <- stats::reformulate(termlabels, response = response)
		if (!intercept) ret <- update.formula(ret, .~. -1)
		attr(ret, ".Environment") <- parent.frame()
		ret
	}
}

if (!exists("nobs", mode = "function", where = "package:stats", inherits = FALSE)) {
`nobs` <- function(object, ...) UseMethod("nobs")
`nobs.default` <- function(object, ...) NROW(resid(object, ...))
#`nobs.glm` <- function (object, ...) sum(!is.na(object$residuals))
}
back to top