Nothing
library(debrowser)
header <- dashboardHeader(
title = "DEBrowser Filter"
)
sidebar <- dashboardSidebar( sidebarMenu(id="DataPrep",
menuItem("Filter", tabName = "Filter")))
body <- dashboardBody(
tabItems(
tabItem(tabName="Filter", dataLCFUI("lcf"),
column(4,
verbatimTextOutput("filtertable")
)
)
))
ui <- dashboardPage(header, sidebar, body, skin = "blue")
server <- function(input, output, session) {
load(system.file("extdata", "demo", "demodata.Rda",
package = "debrowser"))
ldata <- reactiveValues(count=NULL, meta=NULL)
ldata$count <- demodata
ldata$meta <- metadatatable
data <- callModule(debrowserlowcountfilter, "lcf", ldata)
observe({
output$filtertable <- renderPrint({
head( data$filter()$count )
})
})
}
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.