d_PCA | R Documentation |
Perform PCA decomposition using stats::prcomp
d_PCA(
x,
x.test = NULL,
k = NULL,
scale = TRUE,
center = TRUE,
verbose = TRUE,
...
)
x |
Input matrix |
x.test |
Optional test set. Will be projected on to PCA basis |
k |
Integer: Number of right singular vectors to compute ( |
scale |
Logical: If TRUE, scale input data before doing SVD |
center |
Logical: If TRUE, also center input data if |
verbose |
Logical: If TRUE, print messages to screen. Default = TRUE |
... |
Additional parameters to be passed to |
Same solution as d_SVD. d_PCA runs prcomp
, which has useful
summary
output
rtDecom
object
E.D. Gennatas
Other Decomposition:
d_H2OAE()
,
d_H2OGLRM()
,
d_ICA()
,
d_Isomap()
,
d_KPCA()
,
d_LLE()
,
d_MDS()
,
d_NMF()
,
d_SPCA()
,
d_SVD()
,
d_TSNE()
,
d_UMAP()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.