Learn R Programming

envoutliers (version 1.1.0)

summary.KRDetect: Summary of the outlier detection results

Description

Summary of results obtained using functions KRDetect.outliers.changepoint, KRDetect.outliers.controlchart and KRDetect.outliers.EV for identification of outliers.

Usage

# S3 method for KRDetect
summary(object, ...)

Arguments

object

a KRDetect object obtained as an output of function KRDetect.outliers.changepoint, KRDetect.outliers.controlchart or KRDetect.outliers.EV for identification of outliers.

...

further arguments to be passed to the summary function.

Details

The function summarizes the results obtained using functions KRDetect.outliers.changepoint, KRDetect.outliers.controlchart and KRDetect.outliers.EV for identification of outliers.

Examples

Run this code
# NOT RUN {
data("mydata", package = "openair")
x = mydata$o3[format(mydata$date, "%m %Y") == "12 2002"]
result = KRDetect.outliers.changepoint(x)
summary(result)
result = KRDetect.outliers.controlchart(x)
summary(result)
result = KRDetect.outliers.EV(x)
summary(result)
# }

Run the code above in your browser using DataLab