Learn R Programming

prinsimp (version 0.8-8)

print.simpart: Print method for Simple Partition

Description

The print method for class "simpart". Prints the simplicity values for both the model basis vectors and the vectors in the simplicity basis of the nearly null space, the percent of variance explained by each basis vector, and the cummulative percent of variance explained up to each basis vector, relative to the total variance explained by the subspace (model or nearly null).

Usage

"print"(x, ...)

Arguments

x
an object of class "simpart", typically result of simpart().
...
arguments to be passed to or from other methods.

See Also

simpart

Examples

Run this code
library(prinsimp)

## Caterpillar data: estimated covariance from Kingsolver et al (2004)
## Measurements are at temperatures 11, 17, 23, 29, 35, 40
data(caterpillar)

cat.sim <- simpart(caterpillar, simpledim = 2,
                   x = c(11, 17, 23, 29, 35, 40), cov = TRUE)
print(cat.sim)

Run the code above in your browser using DataLab