R/hierParseFormula.R

"hierParseFormula" <-
function (formula, data)
{
    lhs <- formula[[2]]
    if (any(attr(terms(formula, data = data), "order") > 1)) 
        stop("interactions are not allowed")
    lhs <- as.matrix(eval(lhs, data))
    formula[[2]] <- NULL
    rhs <- model.frame(formula, data, drop.unused.levels = TRUE)
    rhs[] <- lapply(rhs, function(u) {
        if (!is.factor(u)) 
            u <- factor(u)
        u
    })
    if (length(rhs) < 2)
        stop("at least 2 hierarchy levels are needed")
    attr(rhs, "terms") <- NULL
    list(lhs=lhs, rhs=rhs)
}

Try the vegan package in your browser

Any scripts or data that you put into this service are public.

vegan documentation built on May 2, 2019, 5:51 p.m.