runFastPCA: Calculate principal components in FSPY

Description Usage Arguments Value See Also Examples

View source: R/pca.R

Description

Calculate principal components in FSPY

Usage

1
runFastPCA(object, center = FALSE, scale. = TRUE, verbose = FALSE, ...)

Arguments

object

an FSPY object

center

logical, a logical value indicating whether the variables should be shifted to be zero centered. Alternately, a vector of length equal the number of columns of x can be supplied. The value is passed to scale. See fast.prcomp

scale.

logical, a logical value indicating whether the variables should be scaled to have unit variance before the analysis takes place. The default is FALSE for consistency with S, but in general scaling is advisable. Alternatively, a vector of length equal the number of columns of x can be supplied. The value is passed to scale. See fast.prcomp

verbose

logical. Whether to print calculation progress.

...

Parameters passing to fast.prcomp function

Value

An FSPY object with PCA

See Also

fast.prcomp

Examples

1
2
3
if (FALSE) {
fspy <- runFastPCA(fspy, verbose = TRUE)
}

flowSpy documentation built on Nov. 8, 2020, 6:53 p.m.