View source: R/geom_bin_2d_interactive.R
geom_bin_2d_interactive | R Documentation |
The geometry is based on geom_bin_2d()
.
See the documentation for those functions for more details.
geom_bin_2d_interactive(...)
... |
arguments passed to base function, plus any of the interactive_parameters. |
The interactive parameters can be supplied with two ways:
As aesthetics with the mapping argument (via aes()
).
In this way they can be mapped to data columns and apply to a set of geometries.
As plain arguments into the geom_*_interactive function. In this way they can be set to a scalar value.
girafe()
# add interactive bin2d heatmap to a ggplot -------
library(ggplot2)
library(ggiraph)
p <- ggplot(diamonds, aes(x, y, fill=cut)) + xlim(4, 10) + ylim(4, 10)+
geom_bin2d_interactive(aes(tooltip = cut), bins = 30)
x <- girafe(ggobj = p)
if( interactive() ) print(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.