Nothing
simple_teal_data <- function() {
data <- within(teal_data(), {
iris <- iris
mtcars <- mtcars
})
data
}
report_module <- function(label = "example teal module") {
module(
label = label,
server = function(id, data, reporter) {
moduleServer(id, function(input, output, session) {
teal.reporter::simple_reporter_srv(
id = "reporter",
reporter = reporter,
card_fun = function(card) card
)
updateSelectInput(session, "dataname", choices = isolate(names(data())))
output$dataset <- renderPrint({
req(input$dataname)
data()[[input$dataname]]
})
})
},
ui = function(id) {
ns <- NS(id)
sidebarLayout(
sidebarPanel(
teal.reporter::simple_reporter_ui(ns("reporter")),
selectInput(ns("dataname"), "Choose a dataset", choices = NULL)
),
mainPanel(verbatimTextOutput(ns("dataset")))
)
}
)
}
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.