Description Usage Arguments Examples
A shiny module that load and display a path to a working directory
1 2 3 | mod_wd_loadUI(id)
mod_wd_load(input, output, session)
|
id |
shiny id |
input |
internal |
output |
internal |
session |
internal |
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(shiny)
library(shinyFiles)
if (interactive()){
ui <- fluidPage(
mod_wd_loadUI("wd")
)
server <- function(input, output, session) {
path <- callModule(mod_wd_load,"wd")
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.