R/HOF.data.frame.R

"HOF.data.frame" <-
function (veg, grad, M, freq.limit = 10, ...) 
{
    freq <- apply(veg > 0, 2, sum)
    veg <- veg[, freq >= freq.limit, drop = FALSE]
    out <- lapply(veg, HOF, grad = grad, M = M, ...)
    class(out) <- "HOF.frame"
    out
}

Try the gravy package in your browser

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

gravy documentation built on May 2, 2019, 4:46 p.m.