https://github.com/cran/fields
Raw File
Tip revision: 8e4f3eaf088a2f2f7992139ada70d2fb655e46de authored by Doug Nychka on 27 August 2003, 16:33:19 UTC
version 1.4.2
Tip revision: 8e4f3ea
bplot.R
"bplot" <-
function (x, by,style = "tukey", outlier = TRUE, plot = TRUE, ...) 
{
    obj <- stats.bplot(x, style = style, outlier = outlier, by=by)
    if (plot) {
        bplot.obj(obj, ...)
    }
    else {
        return(obj)
    }
    invisible()
}
back to top