R/multipart.formula.R

Defines functions `multipart.formula`

`multipart.formula` <-
    function(formula, data, index=c("renyi", "tsallis"), scales = 1,
             global = FALSE, relative = FALSE, nsimul=99,
             method = "r2dtable", ...)
{
    ## evaluate formula
    if (missing(data))
        data <- parent.frame()
    tmp <- hierParseFormula(formula, data)
    ## run simulations
    sim <- multipart.default(tmp$lhs, tmp$rhs, index = index, scales = scales,
                             global = global, relative = relative,
                             nsimul = nsimul, method = method, ...)
    call <- match.call()
    call[[1]] <- as.name("multipart")
    attr(sim, "call") <- call
    sim
}

Try the vegan package in your browser

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

vegan documentation built on Oct. 11, 2022, 5:06 p.m.