simpvector: Simplify a (Principal Component) Vector to a Simple Component

View source: R/sca.R

simpvectorR Documentation

Simplify a (Principal Component) Vector to a Simple Component

Description

Simplifies the vector x to become a “simple” component vector (of the same size).

Usage

simpvector(x)

Arguments

x

numeric vector of length n, say.

Value

a “simplified” version of x, i.e. an integer vector of the same length and each entry with the same signs.

See Also

sca, also for references

Examples

 x0 <- c(-2:3, 3:-1,0:3,1,1)
 cbind(x0, simpvector(x0)) # entries (-11, 0, 3)

sca documentation built on Jan. 14, 2023, 5:07 p.m.

Related to simpvector in sca...