Nothing
library("shiny")
library("threejs")
data("LeMis")
shinyUI(fluidPage(
titlePanel("Shiny three.js graph example"),
sidebarLayout(
sidebarPanel(
selectInput("select", label = h3("Vertex shape"),
choices = list("Spheres" = "o", "Circles" = "@", "Labels" = "Labels"), selected = 1),
p("Use the mouse zoom to rotate, zoom, and pan.")
),
mainPanel(
scatterplotThreeOutput("graph")
)
)
))
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.