Nothing
`getAllTerms.default` <-
#function(x, ...) getAllTerms.formula(as.formula(formula(x)), ...)
function(x, ...) getAllTerms.terms(terms(as.formula(formula(x))), ...)
`getAllTerms.gam` <-
function(x, intercept = FALSE, offset = TRUE, ...)
getAllTerms.terms(terms(formula(x), ...), intercept = intercept, offset = offset)
`getAllTerms.lm` <-
function(x, intercept = FALSE, offset = TRUE, ...)
getAllTerms.terms(terms(x, ...), intercept = intercept, offset = offset)
`getAllTerms.terms` <-
function(x, intercept = FALSE, offset = TRUE, ...) {
interceptLabel <- "(Intercept)"
variables <- attr(x, "variables")[-1L]
if (!is.null(attr(x, "offset"))){
offs <- sapply(variables[attr(x, "offset")], deparse)
} else offs <- NULL
ans <- attr(x, "term.labels")
# Get term names, with higher order term components arranged alphabetically
if (length(ans) > 0L) {
factors <- attr(x, "factors")
factors <- factors[order(rownames(factors)), , drop = FALSE]
v <- rownames(factors)
ans <- apply(factors != 0L, 2L, function(x) paste0(v[x], collapse = ":"))
}
# Leave out random terms (lmer type)
.is.re <- function(x) {
n <- length(x)
if(n == 3L && x[[1L]] == "|") return(1L)
if(n == 2 && is.call(x[[2L]]) && x[[2L]][[1L]] == "|") return(2L)
return(0L)
}
reType <- vapply(variables, .is.re, 0L)
# 1 -> (terms|group), 2 -> struc(terms|group)
ran <- as.character(variables[reType != 0L])
ifx <- !(ans %in% ran)
ans <- ans[ifx] # ifx - indexes of fixed terms
# finally, sort by term order and then alphabetically
ord <- order(attr(x, "order")[ifx], gsub("I\\((.*)\\)", "\\1", ans))
ans <- unname(ans[ord])
deps <- if (length(ans) > 0L) termdepmat(reformulate(ans)) else
matrix(FALSE, 0L, 0L)
dimnames(deps) <- list(ans, ans)
diag(deps) <- NA
if(intercept && attr(x, "intercept")) {
ans <- c(interceptLabel, ans)
ord <- c(1L, ord + 1L)
}
if (!is.null(offs[1L])) {
if (offset) {
ans <- c(ans, offs)
ord <- c(ord, length(ord) + 1L)
}
attr(ans, "offset") <- offs
}
attr(ans, "intercept") <- attr(x, "intercept")
attr(ans, "interceptLabel") <- interceptLabel
if (length(ran) > 0L) {
attr(ans, "random.terms") <- ran
i <- reType[reType != 0L] == 1L
ran1 <- ran
ran1[i] <- paste0("(", ran1[i], ")")
f.random <- reformulate(c(".", ran1), response = ".")
environment(f.random) <- environment(x)
attr(ans, "random") <- f.random
}
response <- attr(x, "response")
response <- if(response == 0L) NULL else variables[[response]]
attr(ans, "response") <- response
attr(ans, "sortorder") <- order(ord)
attr(ans, "deps") <- deps
ans
}
`getAllTerms.formula` <-
function(x, ...) getAllTerms.terms(terms.formula(x), ...)
`getAllTerms.lme` <-
function(x, ...) {
termsobj <- if(inherits(x, "glmmPQL"))
terms(formula(x), data = x$data) else
terms(x)
ret <- getAllTerms.terms(termsobj, ...)
attr(ret, "random") <- . ~ .
# Code from nlme:::print.reStruct, modified slightly
reStruct <- x$modelStruct$reStruct
nobj <- length(reStruct)
if (is.null(namx <- names(reStruct)))
names(reStruct) <- nobj:1L
aux <- t(array(rep(names(reStruct), nobj), c(nobj, nobj)))
aux[lower.tri(aux)] <- ""
reStruct[] <- rev(reStruct)
aux <- t(array(rep(names(reStruct), nobj), c(nobj, nobj)))
aux[lower.tri(aux)] <- ""
attr(ret, "random.terms") <- paste(lapply(lapply(reStruct, attr, "formula"),
"[[", 2L), "|",
rev(apply(aux, 1L, function(z) paste(z[z != ""], collapse = " %in% "))))
return(ret)
}
# Apparently there is no (explicit) intercept in coxph, but 'terms' gives
# attr(,"intercept") == 1.
`getAllTerms.coxph` <- function (x, ...) {
ret <- getAllTerms.default(x, ...)
attr(ret, "intercept") <- 0L
attr(ret, "interceptLabel") <- NULL
return(ret)
}
`getAllTerms.glmmML` <- function (x, ...) {
ret <- getAllTerms.terms(terms(x), ...)
attr(ret, "random.terms") <- paste("1 |", x$call$cluster)
return(ret)
}
split_formula_by_bar <-
function(f) {
n <- length(f)
ans <- if(length(f[[n]]) != 1L && f[[n]][[1L]] == "|") {
f1 <- vector("list", 2L)
for(i in 1L:2L) {
f1[[i]] <- f
f1[[i]][[n]] <- f[[n]][[i + 1L]]
}
f1
} else list(f)
ans
}
`getAllTerms.hurdle` <-
`getAllTerms.zeroinfl` <-
function(x, intercept = FALSE, ...) {
formList <- split_formula_by_bar(formula(x))
formList <- lapply(lapply(formList, terms.formula,
data = eval(x$call$data, environment(formula(x)))),
formula)
z <- lapply(formList, getAllTerms, intercept = TRUE)
if(oneform <- length(formList) == 1L) z <- c(z, z)
deps <- termdepmat_combine(lapply(z, attr, "deps"))
ord <- unlist(lapply(z, attr, "sortorder"))
n <- sapply(z, length)
if(length(z) > 1L) ord[-j] <- ord[-(j <- seq_len(n[1L]))] + n[1L]
zz <- unlist(z)
interceptIdx <- zz == "(Intercept)"
offsetIdx <- match(zz, unique(unlist(lapply(z, attr,"offset"))), nomatch = 0) != 0
termIdx <- !(offsetIdx | interceptIdx)
zz <- paste0(rep(c("count", "zero")[seq_along(z)], sapply(z, length)),
"_", zz)
dimnames(deps) <- list(zz[termIdx], zz[termIdx])
if(oneform) { # dependency of count_X and zero_X
k <- length(zz[termIdx]) / 2
deps[c(seq(k + 1L, by = 2L * k + 1L, length.out = k),
seq((2L * k * k) + 1L, by = 2L * k + 1L, length.out = k))] <- TRUE
}
ret <- if(!intercept) zz[!interceptIdx] else zz
if(any(offsetIdx)) attr(ret, "offset") <- zz[offsetIdx]
attr(ret, "intercept") <- pmin(which(interceptIdx), 1)
attr(ret, "interceptLabel") <- zz[interceptIdx]
attr(ret, "response") <- attr(z[[1L]], "response")
attr(ret, "sortorder") <- if(!intercept) order(ord[!interceptIdx]) else ord
attr(ret, "deps") <- deps
ret
}
## TODO: test with offsets
`getAllTerms.betareg` <-
function(x, intercept = FALSE, ...) {
formList <- split_formula_by_bar(formula(x))
formList <- lapply(lapply(formList, terms.formula, data = model.frame(x)),
formula)
oneform <- length(formList) == 1L
z <- lapply(formList, getAllTerms, intercept = TRUE)
deps <- termdepmat_combine(lapply(z, attr, "deps"))
ord <- unlist(lapply(z, attr, "sortorder"))
n <- sapply(z, length)
if(length(z) > 1L) ord[-j] <- ord[-(j <- seq_len(n[1L]))] + n[1L]
zz <- unlist(z)
interceptIdx <- zz == "(Intercept)"
offsetIdx <- match(zz, unique(unlist(lapply(z, attr,"offset"))), nomatch = 0) != 0
termIdx <- !(offsetIdx | interceptIdx)
if(!oneform && n[2L] != 0L) {
i.phi <- -seq.int(n[1L])
zz[i.phi] <- paste("(phi)", zz[i.phi], sep = "_")
}
dimnames(deps) <- list(zz[termIdx], zz[termIdx])
ret <- if(!intercept) zz[!interceptIdx] else zz
if(any(offsetIdx)) attr(ret, "offset") <- zz[offsetIdx]
attr(ret, "intercept") <- pmin(which(interceptIdx), 1)
attr(ret, "interceptLabel") <- zz[interceptIdx]
attr(ret, "response") <- attr(z[[1L]], "response")
attr(ret, "sortorder") <- if(!intercept) order(ord[!interceptIdx]) else ord
attr(ret, "deps") <- deps
ret
}
`getAllTerms.glimML` <- function(x, intercept = FALSE, ...) {
ret <- getAllTerms.default(x, intercept = intercept, ...)
ttran <- terms.formula(x@random)
ran <- attr(ttran, "term.labels")
if(length(ran)) attr(ret, "random.terms") <- paste("1 |", ran)
ret
}
`getAllTerms.coxme` <-
function(x, ...) {
ret <- getAllTerms.terms(terms(x))
random <- x$formulaList$random
attr(ret, "random.terms") <- as.character(random)
f <- as.name(".")
for(f1 in random) f <- call("+", f, f1)
attr(ret, "random") <- call("~", as.name("."), f)
attr(ret, "intercept") <- 0L
attr(ret, "interceptLabel") <- NULL
ret
}
`getAllTerms.MCMCglmm` <-
function (x, ...) {
res <- getAllTerms.default(x, ...)
attr(res, "random") <- .formulaEnv(.~., environment(formula(x)))
attr(res, "random.terms") <- asChar(x$Random$formula)[1L]
res
}
`getAllTerms.gamm` <-
function (x, ...) getAllTerms(x$gam, ...)
`getAllTerms.mark` <-
function (x, intercept = FALSE, ...) {
f <- formula(x, expand = FALSE)[[2L]]
formlist <- list()
while(length(f) == 3L && f[[1L]] == "+") {
formlist <- c(f[[3L]], formlist)
f <- f[[2L]]
}
formlist <- append(f, formlist)
wrapfunc <- function(x, func) if(length(x) == 0L) x else paste0(func, "(", x, ")")
alltermlist <- lapply(formlist, function(x, intercept) {
func <- asChar(x[[1L]])
at <- getAllTerms(terms(eval(call("~", x[[2L]]))), intercept = intercept)
at[] <- wrapfunc(at, func)
dn <- wrapfunc(rownames(attr(at, "deps")), func)
attr(at, "interceptLabel") <- wrapfunc(attr(at, "interceptLabel"), func)
dimnames(attr(at, "deps")) <- list(dn, dn)
at
}, intercept)
retval <- unlist(alltermlist, recursive = TRUE)
for(a in c("intercept", "interceptLabel")) {
attr(retval, a) <- unlist(sapply(alltermlist, attr, a))
}
attr(retval, "sortorder") <-
order(rep(seq_along(alltermlist), vapply(alltermlist, length, 1L)),
unlist(lapply(alltermlist, attr, "sortorder")))
attr(retval, "deps") <- termdepmat_combine(lapply(alltermlist, attr, "deps"))
retval
}
`getAllTerms.asreml` <-
function(x, intercept = FALSE, ...)
getAllTerms.terms(terms(formula(x)), intercept = intercept, ...)
`getAllTerms.cpglmm` <-
function (x, intercept = FALSE, ...)
getAllTerms(x@formula, intercept = intercept, ...)
`getAllTerms` <-
function(x, ...)
UseMethod("getAllTerms")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.