View source: R/autoplot_lookout.R
autoplot.lookoutliers | R Documentation |
Scatterplot of two columns from the data set with outliers highlighted.
## S3 method for class 'lookoutliers' autoplot(object, columns = 1:2, ...)
object |
The output of the function 'lookout'. |
columns |
Which columns of the original data to plot (specified as either numbers or strings) |
... |
Other arguments currently ignored. |
A ggplot object.
X <- rbind( data.frame(x = rnorm(500), y = rnorm(500)), data.frame(x = rnorm(5, mean = 10, sd = 0.2), y = rnorm(5, mean = 10, sd = 0.2)) ) lo <- lookout(X) autoplot(lo)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.