Description Usage Arguments Value Examples
The actual labels text will be instantiated when it is added to ggcyto plot.
1 |
labels |
default labels for x, y axis. Can be "channel" , "marker", or "both" (default) |
a list
1 2 3 4 5 6 7 8 9 10 11 12 | dataDir <- system.file("extdata",package="flowWorkspaceData")
gs <- load_gs(list.files(dataDir, pattern = "gs_manual",full = TRUE))
# default is "both"
p <- ggcyto(gs, aes(x = CD4, y = CD8), subset = "CD3+") + geom_hex(bins = 64)
p
#use marker name as x,y labs
p + labs_cyto("marker")
#use channel name as x,y labs
p + labs_cyto("channel")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.