Nothing
library(knitr) library(ggvis) library(shiny) library(dplyr)
An interactive plot:
cocaine %>% ggvis(x = ~potency) %>% layer_histograms(width = input_slider(1, 20, value = 5))
An interactive table:
cocaine %>% group_by(state) %>% summarise(potency = mean(potency), weight = mean(weight)) %>% renderDataTable()
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.