ggiraph (version 0.4.3)

geom_bar_interactive: interactive bars

Description

The geometry is based on geom_bar. See the documentation for those functions for more details.

Usage

geom_bar_interactive(mapping = NULL, data = NULL, stat = "count",
  position = "stack", ..., width = NULL, na.rm = FALSE,
  show.legend = NA, inherit.aes = TRUE)

Arguments

mapping

The aesthetic mapping, see geom_point.

data

A data frame, see geom_point.

stat

The statistical transformation to use on the data for this layer, as a string, see geom_point.

position

Postion adjustment, see geom_point.

...

other arguments passed on to layer. See geom_point.

width

Bar width.

na.rm
show.legend
inherit.aes

See Also

ggiraph

Examples

Run this code
# NOT RUN {
library(ggplot2)
g <- ggplot(mpg, aes( x = class, tooltip = class,
        data_id = class ) ) +
  geom_bar_interactive()
ggiraph(code = print(g))

dat <- data.frame( name = c( "David", "Constance", "Leonie" ),
    gender = c( "Male", "Female", "Female" ),
    height = c(172, 159, 71 ) )
g <- ggplot(dat, aes( x = name, y = height, tooltip = gender,
        data_id = name ) ) +
  geom_bar_interactive(stat = "identity")
ggiraph(code = print(g))
# }

Run the code above in your browser using DataCamp Workspace