Condition Map
Condition Map
new()
Annotation$new( annotation, experimentID, fixed = NULL, random = NULL, sampleID = "Raw.file" )
exists()
Annotation$exists(colname)
levels()
Annotation$levels(colname)
get()
Annotation$get(colname)
get_factors()
Annotation$get_factors()
get_sample_id()
Annotation$get_sample_id()
as_numeric()
Annotation$as_numeric(colname)
get_color()
Annotation$get_color( colname, pal_function = dichromat_pal, pal_name = "BrowntoBlue.10" )
clone()
The objects of this class are cloneable with this method.
Annotation$clone(deep = FALSE)
deep
Whether to make a deep clone.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(SRMService)
library(dplyr)
x <- data.frame(Raw.file = c("A","B","C"),"MeasurementOrder" = c(1,2,3) , Gender = c("F","F","M"))
cm <- Annotation$new(x, experimentID = "E1 with random Effect", fixed = "Gender", random="MeasurementOrder")
cm$exists("Gender")
cm$exists("Stop")
cm$fixed
cm$random
cm$as_numeric("Gender")
cm$levels("Gender")
cm$get("Gender")
cm$get_color("Gender")
cm$sampleID
cm$get_sample_id()
cm$annotation
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.