geom_hex_interactive {ggiraph} | R Documentation |
Create interactive hexagonal heatmaps
Description
The geometry is based on geom_hex()
.
See the documentation for those functions for more details.
Usage
geom_hex_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 hexagonal heatmaps to a ggplot -------
library(ggplot2)
library(ggiraph)
p <- ggplot(diamonds, aes(carat, price)) +
geom_hex_interactive(aes(tooltip = after_stat(count)), bins = 10)
x <- girafe(ggobj = p)
if( interactive() ) print(x)
[Package ggiraph version 0.8.10 Index]