labs_cyto: Change axis labels and legend titles

View source: R/labs.R

labs_cytoR Documentation

Change axis labels and legend titles

Description

The actual labels text will be instantiated when it is added to ggcyto plot.

Usage

labs_cyto(labels = "both")

Arguments

labels

default labels for x, y axis. Can be "channel" , "marker", or "both" (default)

Value

a list

Examples


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")

RGLab/ggcyto documentation built on March 3, 2024, 6:23 p.m.