View source: R/nameAssignment.R
scoreNameAssignProj | R Documentation |
Assign names to score lists based on group_name, the group_name is the output of the groupNameExtractor
scoreNameAssignProj(score_list, group_name)
score_list |
A list of scores in the analysis |
group_name |
A vector of group names extracted by groupNameExtractor function |
A list of scores assigned with names
score_list = list(
list(matrix(c(1 : 4), nrow = 2), matrix(c(1 : 4), nrow = 2)),
list(matrix(c(1 : 4), nrow = 2), matrix(c(1 : 4), nrow = 2)))
group_name = c("comp1", "comp2")
scoreNameAssignProj(score_list, group_name)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.