plotClusterHeatmap {flowSpy} | R Documentation |
Visualization heatmap of cluster data of FSPY
plotClusterHeatmap( object, color = colorRampPalette(c("blue", "white", "red"))(100), scale = "row", ... )
object |
An FSPY object |
color |
vector. Colors used in heatmap. |
scale |
character. Whether the values should be centered and scaled in either the row direction or the column direction, or none. Corresponding values are "row", "column" and "none" |
... |
options to pass on to the |
ggplot2 figure
if (FALSE) { plotClusterHeatmap(fspy) plotClusterHeatmap(fspy, color = colorRampPalette(c("purple","white","yellow"))(100)) plotClusterHeatmap(fspy, cluster_row = F) plotClusterHeatmap(fspy, cluster_row = F, cluster_col = F) }