Define the ternary continuous position scales (T, L & R).
scale_T_continuous(
name = waiver(),
limits = NULL,
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
...
)scale_L_continuous(
name = waiver(),
limits = NULL,
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
...
)
scale_R_continuous(
name = waiver(),
limits = NULL,
breaks = waiver(),
minor_breaks = waiver(),
labels = waiver(),
...
)
The name of the scale. Used as the axis or legend title. If
waiver()
, the default, the name of the scale is taken from the first
mapping used for that aesthetic. If NULL
, the legend title will be
omitted.
One of:
NULL
to use the default scale range
A numeric vector of length two providing limits of the scale.
Use NA
to refer to the existing minimum or maximum
A function that accepts the existing (automatic) limits and returns
new limits. Also accepts rlang lambda function
notation.
Note that setting limits on positional scales will remove data outside of the limits.
If the purpose is to zoom, use the limit argument in the coordinate system
(see coord_cartesian()
).
One of:
NULL
for no breaks
waiver()
for the default breaks computed by the
transformation object
A numeric vector of positions
A function that takes the limits as input and returns breaks
as output (e.g., a function returned by scales::extended_breaks()
).
Also accepts rlang lambda function notation.
One of:
NULL
for no minor breaks
waiver()
for the default breaks (one minor break between
each major break)
A numeric vector of positions
A function that given the limits returns a vector of minor breaks. Also accepts rlang lambda function notation. When the function has two arguments, it will be given the limits and major breaks.
One of:
NULL
for no labels
waiver()
for the default labels computed by the
transformation object
A character vector giving labels (must be same length as breaks
)
An expression vector (must be the same length as breaks). See ?plotmath for details.
A function that takes the breaks as input and returns labels as output. Also accepts rlang lambda function notation.
not used
Nicholas Hamilton