autoplot.dobin {dobin} | R Documentation |
Scatterplot of the first two columns in the dobin space.
## S3 method for class 'dobin'
autoplot(object, ...)
object |
The output of the function 'dobin'. |
... |
Other arguments currently ignored. |
A ggplot object.
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)