plot.prcomp_qts {squat} | R Documentation |
Plot for prcomp_qts
objects
Description
This function creates a visualization of the results of the PCA applied on a sample of QTS without returning the plot data as an object.
Usage
## S3 method for class 'prcomp_qts'
plot(x, what = "PC1", ...)
## S3 method for class 'prcomp_qts'
screeplot(x, ...)
Arguments
x |
An object of class |
what |
A string specifying what kind of visualization the user wants to
perform. Choices are words starting with |
... |
If |
Value
No return value, called for side effects.
Examples
df <- as_qts_sample(vespa64$igp[1:16])
res_pca <- prcomp(df)
# You can plot the effect of a PC on the mean
plot(res_pca, what = "PC1")
# You can plot the data points in a PC plane
plot(res_pca, what = "scores")