Nothing
## ----setup, include = FALSE---------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
## ----eval=FALSE,echo=TRUE-----------------------------------------------------
#
# # library
# library(shiny)
#
# if(interactive()) {
# ui <- fluidPage(
# # Application title
# titlePanel("Transfer browser link parameters to shiny input"),
#
# # Sidebar with a slider input for number of bins
# selectInput(
# inputId = "datasetbin",
# label = "Choose an option",
# choices = c("rock", "pressure", "cars")
# ),
# textInput(
# inputId = "cd323",
# label = "Choose a name",
# value = "No name"
# ),
#
# numericInput(
# inputId = "number1",
# label = "Choose a number",
# value = 10
# ),
#
# htmlOutput("outputnum")
# )
#
# server <- function(input,output,session) {
# }
#
# shinyApp(ui = ui, server = server)
# }
#
## ----eval=FALSE,echo=TRUE-----------------------------------------------------
#
# # library
# library(shiny)
# library(shinyStorePlus)
#
# if(interactive()) {
# ui <- fluidPage(
# # Application title
# titlePanel("Transfer browser link parameters to shiny input"),
#
# # Sidebar with a slider input for number of bins
# selectInput(
# inputId = "datasetbin",
# label = "Choose an option",
# choices = c("rock", "pressure", "cars")
# ),
# textInput(
# inputId = "cd323",
# label = "Choose a name",
# value = "No name"
# ),
#
# numericInput(
# inputId = "number1",
# label = "Choose a number",
# value = 10
# ),
#
# htmlOutput("outputnum")
# )
#
# server <- function(input,output,session) {
# }
#
# shinyApp(ui = ui, server = server)
# }
#
## ----eval=FALSE,echo=TRUE-----------------------------------------------------
#
# # library
# library(shiny)
# library(shinyStorePlus)
#
# if(interactive()) {
# ui <- fluidPage(
#
# #Initialize shinyStorePlus
# initStore(),
#
# # Application title
# titlePanel("Transfer browser link parameters to shiny input"),
#
# # Sidebar with a slider input for number of bins
# selectInput(
# inputId = "datasetbin",
# label = "Choose an option",
# choices = c("rock", "pressure", "cars")
# ),
# textInput(
# inputId = "cd323",
# label = "Choose a name",
# value = "No name"
# ),
#
# numericInput(
# inputId = "number1",
# label = "Choose a number",
# value = 10
# ),
#
# htmlOutput("outputnum")
# )
#
# server <- function(input,output,session) {
# }
#
# shinyApp(ui = ui, server = server)
# }
#
## ----eval=FALSE,echo=TRUE-----------------------------------------------------
#
# # library
# library(shiny)
# library(shinyStorePlus)
#
# if(interactive()) {
# ui <- fluidPage(
#
# #Initialize shinyStorePlus
# initStore(),
#
# # Application title
# titlePanel("Transfer browser link parameters to shiny input"),
#
# # Sidebar with a slider input for number of bins
# selectInput(
# inputId = "datasetbin",
# label = "Choose an option",
# choices = c("rock", "pressure", "cars")
# ),
# textInput(
# inputId = "cd323",
# label = "Choose a name",
# value = "No name"
# ),
#
# numericInput(
# inputId = "number1",
# label = "Choose a number",
# value = 10
# ),
#
# htmlOutput("outputnum")
# )
#
# server <- function(input,output,session) {
# # for the inputs
# link2input(
# #example: shiny element ID = link parameter
# cd323 = "name",
# datasetbin = "data",
# number1 = "num"
# )
# #for the outputs
# link2input(
# outputnum = "outt",
# inputtype = "output"
# )
#
# }
#
# shinyApp(ui = ui, server = server)
# }
#
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.