Nothing
library(shiny)
shinyUI(pageWithSidebar(
headerPanel("amptester"),
sidebarPanel(
fileInput("input.file", "Choose CSV File (input should not contain cycle data)",
accept=c("text/csv", "text/comma-separated-values,text/plain", ".csv")),
checkboxInput("header", "Header", TRUE),
radioButtons("csv.type", "Type of csv file",
c("Dec: dot (.), Sep: comma (;)" = "csv1",
"Dec: comma (.), Sep: semicolon (;)" = "csv2")),
selectInput("amptester.manual", "Choose a test:",
choices = c("statistical", "manual"),
selected = "statistical"),
numericInput("amptester.noiselevel", "Noise level:", 0.08,
min = 0, max = 2, step = 0.04),
downloadButton("download.result", "Download amptester results (with graphics)"),
downloadButton("download.table", "Download amptester results (.csv)"),
downloadButton("download.data", "Download amptester processed data (.csv)")
),
mainPanel(
tabsetPanel(
tabPanel("Input data", tableOutput("input.data")),
tabPanel("Results with graphics", uiOutput("amptest.summary")),
tabPanel("Results - table", tableOutput("amptest.table")),
tabPanel("Results - data table", tableOutput("amptest.data"))
)
)
)
)
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.