Description Usage Arguments Value See Also Examples
Plot a star chart indicating median marker values of a single node
1 2 3 4 5 6 7 8 | PlotNode(
fsom,
id,
markers = fsom$map$colsUsed,
colorPalette = grDevices::colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan",
"#7FFF7F", "yellow", "#FF7F00", "red", "#7F0000")),
main = paste0("Cluster ", id)
)
|
fsom |
FlowSOM object, as generated by |
id |
Id of the node to plot (check PlotNumbers to get the ids) |
markers |
Array of markers to use. Default: the markers used to build the tree |
colorPalette |
Colorpalette to be used for the markers |
main |
Title of the plot |
Nothing is returned. A plot is drawn in which the node is represented by a star chart indicating the median fluorescence intensities.
PlotStars
,PlotNumbers
,
FlowSOM
1 2 3 4 5 6 7 | # Read from file, build self-organizing map and minimal spanning tree
fileName <- system.file("extdata", "68983.fcs", package="FlowSOM")
flowSOM.res <- FlowSOM(fileName, compensate=TRUE,transform=TRUE,
scale=TRUE,colsToUse=c(9,12,14:18),nClus=10)
# Plot stars indicating the MFI of the cells present in the nodes
PlotNode(flowSOM.res$FlowSOM,1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.