palette_size | R Documentation |
Symbol Size Mapping
palette_size_sequential(range = c(1, 6), ...)
palette_size_diverging(range = c(1, 6), midpoint = 0, ...)
range |
A length-two |
... |
Currently not used. |
midpoint |
A length-one |
A palette function
that when called with a single argument
(a numeric
vector of continuous values) returns a numeric
vector
giving the amount by which plotting text and symbols should be magnified
relative to the default.
Other palettes:
palette_color_continuous()
,
palette_color_discrete()
,
palette_color_picker()
,
palette_shape()
## Visualize a simple DEM model
## Distribution of elevation values
elevation <- hist(volcano)
## Where are breaks?
elevation$breaks
## Build palette functions
BuRd <- color("BuRd")
ramp_BuRd <- palette_color_continuous(colors = BuRd(10))
## Plot image
image(volcano, col = ramp_BuRd(elevation$breaks))
legend("topright", legend = elevation$breaks, fill = ramp_BuRd(elevation$breaks))
## Scatter plot
## Build color palette functions
YlOrBr <- color("YlOrBr")
pal_color <- palette_color_continuous(colors = YlOrBr)
## Build symbol palette functions
pal_size <- palette_size_sequential(range = c(1, 3))
## Plot
plot(
x = iris$Petal.Length,
y = iris$Sepal.Length,
pch = 16,
col = pal_color(iris$Petal.Length),
cex = pal_size(iris$Petal.Length),
xlab = "Petal length",
ylab = "Sepal length",
panel.first = grid(),
las = 1
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.