Learn R Programming

Morpho (version 2.1)

PCdist: correlation between a reduced space and the original space

Description

Calculates the correlation between distances in a reduced space and the original space

Usage

PCdist(PCs, PCscores, x = 5, plot.type = "b")

Arguments

PCs
m x k matrix of Principal Components where m is the k is the number of PCs.
PCscores
n x m matrix of Principal Component scores where n is the number of observations.
x
integer: increment for every x-th PC the subspace to fullspace correlation will be calculated.
plot.type
"b"=barplot of correlation values, "s"=line between correlation values.

Value

  • a vector of R-squared values between subspace and fullspace distances and a barplot depicting the correlations belonging to the subspace.

Examples

Run this code
library(shapes)
a <- procSym(gorf.dat)
PCdist(a$PCs, a$PCscores, x = 2)

Run the code above in your browser using DataLab