autoplot.dobin: Plots the first two components of the dobin space.

View source: R/autoplot_dobin.R

autoplot.dobinR 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)

dobin documentation built on Aug. 26, 2022, 1:06 a.m.