Description Usage Arguments Value See Also Examples
Plot FlowSOM grid or tree, with in each node a number indicating its index
1 2 3 4 5 6 7 8 9 10 11 |
fsom |
FlowSOM object, as generated by |
view |
Preferred view, options: "MST", "grid" or "tSNE" (if this option was selected while building the MST) |
main |
Title of the plot |
nodeSize |
Nodesize. The plot might be easier to read if this is a constant number, e.g. 10 or 15 |
fontSize |
Fontsize, passed to label.cex |
backgroundValues |
Values to be used for background coloring, either numerical values or something that can be made into a factor (e.g. a clustering) |
backgroundColor |
Colorpalette to be used for the background coloring . Can be either a function or an array specifying colors |
backgroundLim |
Only used when backgroundValues are numerical. Defaults to min and max of the backgroundValues. |
backgroundBreaks |
Breaks to pass on to |
Nothing is returned. A plot is drawn in which each node is assigned a number
PlotMarker
,PlotStars
,
PlotPies
,PlotCenters
,
BuildMST
1 2 3 4 5 6 7 8 9 10 11 12 | # Read from file, build self-organizing map and minimal spanning tree
fileName <- system.file("extdata", "68983.fcs", package="FlowSOM")
flowSOM.res <- ReadInput(fileName, compensate=TRUE,transform=TRUE,
scale=TRUE)
flowSOM.res <- BuildSOM(flowSOM.res,colsToUse=c(9,12,14:18))
flowSOM.res <- BuildMST(flowSOM.res)
# Plot the node IDs
PlotNumbers(flowSOM.res)
# Adapt node size for easier readability
PlotNumbers(flowSOM.res, nodeSize=14)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.