https://github.com/cran/fields
Raw File
Tip revision: beb6c9118b4f355fc630943f00274a7df8714fe1 authored by Doug Nychka on 26 April 2007, 00:00:00 UTC
version 3.5
Tip revision: beb6c91
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, outlier=outlier,...)
    }
    else {
        return(obj)
    }
    invisible()
}

back to top