sqrtAxis | R Documentation |
Determine square root axis tick mark positions, including positive and negative range values.
sqrtAxis(
side = 1,
x = NULL,
pretty.n = 10,
u5.bias = 0,
big.mark = ",",
plot = TRUE,
las = 2,
cex.axis = 0.6,
...
)
side |
integer value indicating the axis position, as used
by |
x |
optional numeric vector representing the numeric range to be labeled. |
pretty.n |
numeric value indicating the number of desired
tick marks, passed to |
u5.bias |
numeric value passed to |
big.mark |
character value passed to |
plot |
logical indicating whether to plot the axis tick marks and labels. |
las , cex.axis |
numeric values passed to |
... |
additional parameters are passed to |
This function calculates positions for tick marks for data
that has been transformed with sqrt()
, specifically a directional
transformation like sqrt(abs(x)) * sign(x)
.
The main goal of this function is to provide reasonably placed tick marks using integer values.
Invisibly returns a numeric vector of axis tick positions, named by the display label. The axis values are in square root space while the labels represent the normal space values.
invisible list
with axis positions, and corresponding labels.
Other jam plot functions:
adjustAxisLabelMargins()
,
coordPresets()
,
decideMfrow()
,
drawLabels()
,
getPlotAspect()
,
groupedAxis()
,
imageByColors()
,
imageDefault()
,
minorLogTicksAxis()
,
nullPlot()
,
plotPolygonDensity()
,
plotRidges()
,
plotSmoothScatter()
,
shadowText_options()
,
shadowText()
,
showColors()
,
smoothScatterJam()
,
usrBox()
plot(-3:3*10, -3:3*10, xaxt="n")
sqrtAxis(1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.