Learn R Programming

fasterRaster (version 8.4.0.5)

pcs: Retrieve a principal components model from a PCA GRaster

Description

Retrieve a principal components model from a PCA GRaster

Usage

pcs(x)

Value

An object of class prcomp.

Arguments

x

A GRaster created by princomp()

See Also

princomp(), terra::princomp(), module i.pca in GRASS

Examples

Run this code
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 <- princomp(chelsa, scale = TRUE)
plot(pcRast)

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

prinComp
summary(prinComp)
plot(prinComp)

}

Run the code above in your browser using DataLab