Scatterplot of the first two columns in the dobin space.
# S3 method for dobin
autoplot(object, ...)
Arguments
- object
The output of the function `dobin`.
- ...
Other arguments currently ignored.
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)