autoplot.dobin {dobin} | R Documentation |
Plots the first two components of the dobin space.
Description
Scatterplot of the first two columns in the dobin space.
Usage
## S3 method for class 'dobin'
autoplot(object, ...)
Arguments
object |
The output of the function 'dobin'. |
... |
Other arguments currently ignored. |
Value
A ggplot object.
Examples
X <- rbind(
data.frame(x = rnorm(500),
y = rnorm(500),
z = rnorm(500)),
data.frame(x = rnorm(5, mean = 10, sd = 0.2),
y = rnorm(5, mean = 10, sd = 0.2),
z = rnorm(5, mean = 10, sd = 0.2))
)
dob <- dobin(X)
autoplot(dob)
[Package dobin version 1.0.4 Index]