print.simpart: Print method for Simple Partition

Description Usage Arguments See Also Examples

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

1
2
## S3 method for class 'simpart'
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

1
2
3
4
5
6
7
8
9
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)

prinsimp documentation built on May 2, 2019, 2:41 a.m.