Skip to contents

Retrieve a principal components model from a PCA GRaster

Usage

pcs(x)

Arguments

x

A GRaster created by pca()

Value

An object of class prcomp.

See also

pca(), stats::prcomp(), module i.pca in GRASS

Examples

if (grassStarted()) {

# Setup
library(terra)

# Climate raster:
madChelsa <- fastData("madChelsa")

# Convert a SpatRaster to a GRaster:
chelsa <- fast(madChelsa)

# Generate raster with layers representing principal component predictions:
pcRast <- pca(chelsa, scale = TRUE)
plot(pcRast)

# Get information on the PCA:
prinComp <- pcs(pcRast)

prinComp
summary(prinComp)
plot(prinComp)

}