autoplot.apd_pca {applicable} | R Documentation |
Plot the distribution function for principal components
Description
Plot the distribution function for principal components
Usage
## S3 method for class 'apd_pca'
autoplot(object, ...)
Arguments
object |
An object produced by |
... |
An optional set of |
Value
A ggplot
object that shows the distribution function for each
principal component.
Examples
library(ggplot2)
library(dplyr)
library(modeldata)
data(biomass)
biomass_ad <- apd_pca(biomass[, 3:8])
autoplot(biomass_ad)
# Using selectors in `...`
autoplot(biomass_ad, distance) + scale_x_log10()
autoplot(biomass_ad, matches("PC[1-2]"))
[Package applicable version 0.1.1 Index]