Description Usage Arguments Details Value Examples
Performs principal components analysis on the given gds object and returns the results as an object of class "prcomp".
1 2 3 4 |
x |
A gds.class object. |
node.name |
Name of the gdsn.class node to learn principal components from |
center |
Logical value indicating whether variables should be shifted to be zero centered. |
scale. |
Logical value indicating whether the variables should be scaled to have unit variance |
tol |
a value indicating the magnitude below which components should be omitted. |
rank. |
(Still functional) Number of principal components to be returned |
retx |
a logical value indicating whether the rotated variables should be returned. |
perc |
The percentage of the number of rows that should be used to calculate principle components. Ranging from 0 to 1, a value of 1 would indicicate all rows will be used. |
npcs |
Number of principal components to be returned |
parallel |
Can supply either a cluster object (made from makeCluster) or a integer describing the number of cores to be used. This is only used if method="sorted". |
method |
Indicates whhich method to use out of "quick" and "sorted". "quick" stochastically selects number of rows according to perc. And the supplies them to svd. "sorted" determines the interquartile range for each row then selects the top percentage (according to perc) of probes with the largest interquartile range and supplies selected rows to svd. |
verbose |
A logical value indicating whether message outputs are displayed. |
... |
arguments passed to or from other methods. If "x" is a formula one might specify "scale." or "tol". |
The calculation is done by a singular value decomposition of the (centered and possibly scaled) data matrix, not by using "eigen" on the covariance matrix. This is generally the preferred method for numerical accuracy. The "print" method for these objects prints the results in a nice format and the "plot" method produces a scree plot.
An object of prcomp class
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.