Constructor for bivariate scale object
bivariate_scale(
aesthetics,
palette,
name = waiver(),
breaks = waiver(),
labels = waiver(),
limits = NULL,
rescaler = scales::rescale,
oob = scales::censor,
expand = waiver(),
na.value = NA_real_,
trans = "identity",
guide = "none",
super = ScaleBivariate,
scale_name = "bivariate_scale"
)
An object of class ScaleBivariate
(inherits from Scale
, ggproto
, gg
) of length 15.
The names of the aesthetics that this scale works with.
A palette function that when called with a numeric vector with
values between 0 and 1 returns the corresponding output values
(e.g., scales::pal_area()
).
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
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()
).
Note that for position scales, limits are provided after scale expansion.
Also accepts rlang lambda function notation.
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.
Data frame with two columns of length two each defining the limits for the two data dimensions.
Either one rescaling function applied to both data dimensions or list of two rescaling functions, one for each data dimension.
One of:
Function that handles limits outside of the scale limits (out of bounds). Also accepts rlang lambda function notation.
The default (scales::censor()
) replaces out of
bounds values with NA
.
scales::squish()
for squishing out of bounds values into range.
scales::squish_infinite()
for squishing infinite values into range.
For position scales, a vector of range expansion constants used to add some
padding around the data to ensure that they are placed some distance
away from the axes. Use the convenience function expansion()
to generate the values for the expand
argument. The defaults are to
expand the scale by 5% on each side for continuous variables, and by
0.6 units on each side for discrete variables.
Missing values will be replaced with this value.
Either one transformation applied to both data dimensions or list of two transformations, one for each data dimension. Transformations can be given as either the name of a transformation object or the object itself. See [`ggplot2::continuous_scale()`] for details.
A function used to create a guide or its name. See
guides()
for more information.
The super class to use for the constructed scale
The name of the scale
that should be used for error messages associated with this scale.