cytoBoxplots | R Documentation |
Draw boxplots for all given clusters. Values are based on the counts
slot in the
cfList
.
cytoBoxplots(cfList, group, stat)
cfList |
a cfList object. It should contain at least data in the 'counts' slot. |
group |
one of:
|
stat |
ignore, will be implemented soon. |
None
# Read Data dirFCS <- system.file("extdata", package="cytofast") cfData <- readCytosploreFCS(dir = dirFCS, colNames = "description") # Add cell counts to cfList and add meta data cfData <- cellCounts(cfData, frequency = TRUE, scale = TRUE) meta <- spitzer[match(row.names(cfData@samples), spitzer$CSPLR_ST),] cfData@samples <- cbind(cfData@samples, meta) # Remove unnecessary markers cfData@expr <- cfData@expr[,-c(3:10, 13:16, 55:59, 61:63)] # Draw boxplots cytoBoxplots(cfData, group="group")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.