View source: R/nameAssignment.R
sampleNameAssignProj | R Documentation |
Assign sample names to dataset, it takes two arguments, the first is the list of scores, the second is the list of sample names
sampleNameAssignProj(score_list, sample_name)
score_list |
List of score for each data.frame |
sample_name |
List of names for the samples in the list |
A list of scores for the samples
x = matrix(c(1:4), nrow = 2)
y = matrix(c(1:4), nrow = 2)
score_list = list(x, y)
sample_name = list("x.sample.1", "x.sample.2")
sampleNameAssignProj(score_list, sample_name)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.