Nothing
library(debrowser)
options(shiny.maxRequestSize = 30*1024^2)
header <- dashboardHeader(
title = "DEBrowser Upload"
)
sidebar <- dashboardSidebar( sidebarMenu(id="DataPrep",
menuItem("Upload", tabName = "Upload")))
body <- dashboardBody(
tabItems(
tabItem(tabName="Upload", dataLoadUI("load"),
column(4,
verbatimTextOutput("counttable"),
verbatimTextOutput("metadatatable")
)
)
))
ui <- dashboardPage(header, sidebar, body, skin = "blue")
server <- function(input, output, session) {
data <- callModule(debrowserdataload, "load", "Filter")
output$counttable <- renderPrint({
head( data$load()$count )
})
output$metadatatable <- renderPrint({
head( data$load()$meta)
})
}
shinyApp(ui, 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.