- ...
<data-masking> A set of mappings
similar to those provided to aes(), which will be
evaluated in the data argument. These must contain aesthetic mapping.
- aesthetic, value
A vector of values for the guide to represent
equivalent to the breaks argument in scales. The aesthetic will be
mapped, whereas value will not. For most intents and purposes,
aesthetic and value should be identical.
- label
A <character> or list of expressions to use as labels.
- type
A <character> vector representing the one of the break types:
"major", "minor" or "mini". If NULL (default), all breaks are
treated as major breaks.
- data
A <data.frame> or similar object coerced by
fortify() to a <data.frame>, in which the mapping
argument is evaluated.
- .call
A call to display in messages.
- prescale_base
A <numeric[1]> giving the base of logarithm to
transform data manually. The default, NULL, will use the scale
transformation to calculate positions. It is only advisable to set the
prescale_base argument when the data have already been log-transformed.
When using a log-transform in the scale or in
coord_trans(), the default NULL is recommended.
- negative_small
A <numeric[1]> setting the smallest absolute value
that is marked with a tick in case the scale limits include 0 or negative
numbers.
- expanded
A <logical[1]> determining whether the ticks should cover
the entire range after scale expansion (TRUE, default), or be restricted
to the scale limits (FALSE).
- labeller
A <function> that receives major breaks and returns
formatted labels. For key_log(), NULL will default to
scales::label_log() for strictly positive numbers and a custom labeller
when negative numbers are included.