fun scale_size_area(maxSize: Number? = null, name: String? = null, breaks: List<Number>? = null, labels: List<String>? = null, limits: Pair<Number?, Number?>? = null, naValue: Number? = null, guide: Any? = null, trans: String? = null): Scale
Continuous scale for size (~radius) that maps 0 value to 0 size
maxSize
- The upper limit of size that the input values are mapped to.
name
- The name of the scale - used as the axis label or the legend title.
If None, the default, the name of the scale
is taken from the first mapping used for that aesthetic.
breaks
- A numeric vector of positions (of ticks).
labels
- A vector of labels (on ticks).
limits
- A pair of numbers specifying the data range for the scale.
Use null to refer to default min/max.
Set limits if you want values to be consistent across multiple plots.
naValue
- Missing values will be replaced with this value.
guide
- A result returned by guide_legend() function or "none" to hide the guide.
trans
- string
Name of built-in transformation ('identity', 'log10', 'reverse', 'sqrt').