├── Apps.zip ├── Encabezado_dashboard.zip ├── barra_lateral.zip ├── cuerpo.zip ├── dashboard.R └── pestañas.zip /Apps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datascienceuc/workshop_shiny/1b9c9c28c663ddad9c3ed8533139c98503a7c24b/Apps.zip -------------------------------------------------------------------------------- /Encabezado_dashboard.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datascienceuc/workshop_shiny/1b9c9c28c663ddad9c3ed8533139c98503a7c24b/Encabezado_dashboard.zip -------------------------------------------------------------------------------- /barra_lateral.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datascienceuc/workshop_shiny/1b9c9c28c663ddad9c3ed8533139c98503a7c24b/barra_lateral.zip -------------------------------------------------------------------------------- /cuerpo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datascienceuc/workshop_shiny/1b9c9c28c663ddad9c3ed8533139c98503a7c24b/cuerpo.zip -------------------------------------------------------------------------------- /dashboard.R: -------------------------------------------------------------------------------- 1 | library(shiny) 2 | library(shinydashboard) 3 | 4 | ui <- dashboardPage( 5 | dashboardHeader(), 6 | dashboardSidebar(), 7 | dashboardBody() 8 | ) 9 | 10 | server <- function(input, output){} 11 | 12 | shinyApp (ui = ui, server = server) -------------------------------------------------------------------------------- /pestañas.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datascienceuc/workshop_shiny/1b9c9c28c663ddad9c3ed8533139c98503a7c24b/pestañas.zip --------------------------------------------------------------------------------