scale_x_flowJo_biexp {ggcyto} | R Documentation |
Add a flowJo biexponential scale to the x or y axes of a ggcyto plot.
scale_x_flowJo_biexp(..., maxValue = 262144, widthBasis = -10, pos = 4.5, neg = 0, equal.space = FALSE) scale_y_flowJo_biexp(..., maxValue = 262144, widthBasis = -10, pos = 4.5, neg = 0, equal.space = FALSE)
... |
common continuous scale parameters passed to 'continuous_scale' (not used currently) |
maxValue, widthBasis, pos, neg |
see 'help(flowJoTrans') |
equal.space |
whether to display the breaks in equal.space format |
ScaleContinuous object
data(GvHD) fr <- GvHD[[1]] p <- ggcyto(fr, aes(x = `FL1-H`)) + geom_density() #display at raw scale p #display at transformed scale p + scale_x_flowJo_biexp(maxValue = 1e4, widthBasis = 0)