Nothing
shiny::shinyServer(function(input, output) {
uploaded_data <- shiny::reactive({
shiny::req(input$file1)
read_app_data(input$file1$datapath, input$file1$name)
})
output$varselect <- shiny::renderUI({
shiny::selectInput(
"vars",
"Gender column:",
names(uploaded_data()),
names(uploaded_data()),
multiple = FALSE
)
})
coded_data <- shiny::reactive({
shiny::req(input$vars)
dictionary <- switch(input$dictionary,
manylevels_en = gendercoder::manylevels_en,
fewlevels_en = gendercoder::fewlevels_en
)
data <- uploaded_data()
data$recoded_gender <- gendercoder::recode_gender(data[[input$vars]], dictionary)
data
})
output$out1 <- shiny::renderTable({
data <- coded_data()
data[, c(input$vars, "recoded_gender"), drop = FALSE]
})
output$downloadData <- shiny::downloadHandler(
filename = function() {
paste0(tools::file_path_sans_ext(input$file1$name), "_coded", input$dlformat)
},
content = function(file) {
data <- coded_data()
gendercoder:::write_app_data(data, file, input$dlformat)
}
)
})
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.