Nothing
library(shiny)
library(plotly)
shinyUI(fluidPage(
titlePanel("Movie Ratings!"),
sidebarPanel(
sliderInput("bins", "Number of bins:", min = 1, max = 50, value = 10)
),
mainPanel(
plotlyOutput("trendPlot")
)
))
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.