summary.KRDetect {envoutliers} | R Documentation |
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 class 'KRDetect'
summary(object, ...)
Arguments
object |
a KRDetect object obtained as an output of function |
... |
further arguments to be passed to the |
Details
The function summarizes the results obtained using functions KRDetect.outliers.changepoint
, KRDetect.outliers.controlchart
and KRDetect.outliers.EV
for identification of outliers.
Examples
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)
[Package envoutliers version 1.1.0 Index]