d_SVD | R Documentation |
Perform SVD decomposition using base::svd
d_SVD(
x,
x.test = NULL,
k = 2,
nu = 0,
scale = TRUE,
center = TRUE,
verbose = TRUE,
...
)
x |
Input matrix |
x.test |
Optional test set matrix. Will be projected on to SVD bases |
k |
Integer: Number of right singular vectors to compute ( |
nu |
Integer: Number of left singular vectors to compute |
scale |
Logical: If TRUE, scale input data before doing SVD. Default = TRUE |
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_PCA
rtDecom
object
E.D. Gennatas
Other Decomposition:
d_H2OAE()
,
d_H2OGLRM()
,
d_ICA()
,
d_Isomap()
,
d_KPCA()
,
d_LLE()
,
d_MDS()
,
d_NMF()
,
d_PCA()
,
d_SPCA()
,
d_TSNE()
,
d_UMAP()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.