ax | R Documentation |
Draw axes for biexp, log or linear transformations.
ax( axis = 1, type = c("biexp", "asinh", "log", "linear", "none"), max_channel = 262143, ticksize = 2, ... )
axis |
Which axis to draw (1 = x, 2 = y) |
type |
Type of transformation (one of |
max_channel |
The maximum value that the flow cytometer can generate. For most BD instruments which have 18-bit A-D converters, that number is (2 ^ 8 - 1), or 262143 |
ticksize |
How big the tick marks should be (in relative coordinates) |
... |
Additional graphical parameters to pass to |
This function is used by pplot
, and only works with methods
in the standard R graphics package. You can use it yourself
for figures you generate that use one of these transformations. To do so, first generate
a plot, and suppress the appropriate axis, e.g. ..., xaxt = 'n', ...
.
# create an empty plot with suitable ranges plot (0, 0, pch = '', xlim = c(0, 5.4), ylim = c(0, 5.4), xaxt = 'n', yaxt = 'n', xlab = 'biexponential', ylab = 'logarithmic') # add the axes ax(axis = 1, type = 'biexp') ax(axis = 2, type = 'log')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.