Nothing
library(ggvis)
# Histogram, fully specified
mtcars %>% ggvis(x = ~wt) %>%
compute_bin(~wt, width = 1, pad = FALSE) %>%
layer_rects(x = ~xmin_, x2 = ~xmax_, y = ~count_, y2 = 0)
# Or using shorthand layer
mtcars %>% ggvis(x = ~wt) %>% layer_histograms()
mtcars %>% ggvis(x = ~wt) %>% layer_histograms(width = 1)
# Histogram, filled by cyl
mtcars %>% ggvis(x = ~wt, fill = ~factor(cyl)) %>%
group_by(cyl) %>%
layer_histograms(width = 1)
# Bigger dataset
data(diamonds, package = "ggplot2")
diamonds %>% ggvis(x = ~table) %>% layer_histograms()
# Stacked histogram
diamonds %>% ggvis(x = ~table, fill = ~cut) %>%
group_by(cut) %>%
layer_histograms(width = 1)
# Histogram of dates
set.seed(2934)
dat <- data.frame(times = as.POSIXct("2013-07-01", tz = "GMT") + rnorm(200) * 60 * 60 * 24 * 7)
dat %>% ggvis(x = ~times) %>% layer_histograms()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.