plot.outForest {outForest}R Documentation

Plots outForest

Description

This function can plot aspects of an "outForest" object.

Usage

## S3 method for class 'outForest'
plot(x, what = c("counts", "scores"), ...)

Arguments

x

An object of class "outForest".

what

What should be plotted? Either "counts" (the default) or "scores".

...

Arguments passed to graphics::barplot() or graphics::stripchart().

Value

A list.

Examples

irisWithOutliers <- generateOutliers(iris, seed = 345)
x <- outForest(irisWithOutliers, verbose = 0)
plot(x)
plot(x, what = "scores")

[Package outForest version 1.0.1 Index]