geom_bin_2d_interactive {ggiraph} | R Documentation |
Create interactive heatmaps of 2d bin counts
Description
The geometry is based on geom_bin_2d()
.
See the documentation for those functions for more details.
Usage
geom_bin_2d_interactive(...)
Arguments
... |
arguments passed to base function, plus any of the interactive_parameters. |
Details for interactive geom functions
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.
See Also
Examples
# 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)
[Package ggiraph version 0.8.10 Index]