pveSep | R Documentation |
Compute the PVE (percentage of variance explained) for each data set
pveSep(dataset, list_score, list_component)
dataset |
A list of data sets for input |
list_score |
A list of extracted scores by the corresponding algorithm |
list_component |
A list of components comptuted by the corresponding algorithm |
The list of scores
dataset = list(matrix(runif(5000, 1, 2), nrow = 100, ncol = 50))
comp_num = 2
res_sepPCA = sepPCA(dataset, comp_num)
pveSep(dataset, res_sepPCA$score_list, res_sepPCA$linked_component_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.