Description Usage Arguments Author(s) Examples
Modify the colorbar
1 |
p |
a plotly object |
... |
arguments are documented here https://plot.ly/r/reference/#scatter-marker-colorbar. |
limits |
numeric vector of length 2. Set the extent of the colorbar scale. |
which |
colorbar to modify? Should only be relevant for subplots with multiple colorbars. |
Carson Sievert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | p <- plot_ly(mtcars, x = ~wt, y = ~mpg, color = ~cyl)
# pass any colorbar attribute --
# https://plot.ly/r/reference/#scatter-marker-colorbar
colorbar(p, len = 0.5)
# Expand the limits of the colorbar
colorbar(p, limits = c(0, 20))
# values outside the colorbar limits are considered "missing"
colorbar(p, limits = c(5, 6))
# also works on colorbars generated via a z value
corr <- cor(diamonds[vapply(diamonds, is.numeric, logical(1))])
plot_ly(x = rownames(corr), y = colnames(corr), z = corr) %>%
add_heatmap() %>%
colorbar(limits = c(-1, 1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.