Create interactive smoothed conditional means
Source:R/geom_smooth_interactive.R
geom_smooth_interactive.Rd
The geometry is based on ggplot2::geom_smooth()
.
See the documentation for those functions for more details.
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
ggplot2::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.
Examples
# add interactive bar -------
library(ggplot2)
library(ggiraph)
p <- ggplot(mpg, aes(displ, hwy)) +
geom_point() +
geom_smooth_interactive(aes(tooltip="smoothed line", data_id="smooth"))
x <- girafe(ggobj = p)
#> `geom_smooth()` using method = 'loess' and formula = 'y ~ x'
x <- girafe_options(x = x,
opts_hover(css = "stroke:orange;stroke-width:3px;") )
if( interactive() ) print(x)
p <- ggplot(mpg, aes(displ, hwy)) +
geom_point() +
geom_smooth_interactive(method = lm, se = FALSE, tooltip="smooth", data_id="smooth")
x <- girafe(ggobj = p)
#> `geom_smooth()` using formula = 'y ~ x'
if( interactive() ) print(x)
p <- ggplot(mpg, aes(displ, hwy, colour = class, tooltip = class, data_id = class)) +
geom_point_interactive() +
geom_smooth_interactive(se = FALSE, method = lm)
x <- girafe(ggobj = p)
#> `geom_smooth()` using formula = 'y ~ x'
x <- girafe_options(x = x,
opts_hover(css = "stroke:red;stroke-width:3px;") )
if( interactive() ) print(x)