Aplicación vacía.

This commit is contained in:
2023-01-12 14:33:51 +01:00
parent b3378b586d
commit 4c81046363
+28
View File
@@ -0,0 +1,28 @@
library(shiny)
ui <- fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar
sidebarLayout(
sidebarPanel(
),
mainPanel(
)
)
)
server <- function(input, output) {
output$distPlot <- renderPlot({
})
}
# Run the application
shinyApp(ui = ui, server = server)