This is the link Posit Cloud. The app works well locally but not when I deploy it. There appear an image that says there is no content.
library(shiny)
library(readxl)
library(DT)
library(dplyr)
# Cargar el dataframe
df <- read_excel("/cloud/project/multiples_regresiones/results_1990_2020.xlsx")
# Cambiar nombres de las columnas
df <- df %>%
rename(
Año = Year,
Hombres = Predicted_Hombres,
Mujeres = Predicted_Mujeres
)
# Crear conjunto de datos para la suma de la AMG
df_AMG <- df %>%
group_by(Año, `Grupos quinquenales de edad`) %>%
summarise(
Hombres = sum(Hombres),
Mujeres = sum(Mujeres),
.groups = "drop"
) %>%
mutate(Municipio = "AMG")
# Unir al conjunto de datos original
df <- bind_rows(df, df_AMG)
# Definir UI
ui <- fluidPage(
titlePanel("Proyecciones de la población del AMG por grupos quinquenales de edad y sexo: 2025-2045"),
sidebarLayout(
sidebarPanel(
selectInput("municipio", "Selecciona un Municipio:", choices = unique(df$Municipio)),
selectInput("grupo", "Selecciona un Grupo de edad:", choices = unique(df$`Grupos quinquenales de edad`))
),
mainPanel(
h3("AMG"),
DTOutput("totalAMG"),
DTOutput("tableData")
)
)
)
# Definir server
server <- function(input, output, session) {
total_AMG <- reactive({
df %>%
filter(Municipio == "AMG") %>%
group_by(Año) %>%
summarise(
Hombres = sum(Hombres),
Mujeres = sum(Mujeres),
Total = Hombres + Mujeres,
.groups = "drop"
) %>%
mutate(
Hombres = formatC(Hombres, format="f", big.mark=",", digits=0),
Mujeres = formatC(Mujeres, format="f", big.mark=",", digits=0),
Total = formatC(Total, format="f", big.mark=",", digits=0)
)
})
filtered_data <- reactive({
df %>%
filter(Municipio == input$municipio, `Grupos quinquenales de edad` == input$grupo) %>%
mutate(
Total = Hombres + Mujeres,
Hombres = formatC(Hombres, format="f", big.mark=",", digits=0),
Mujeres = formatC(Mujeres, format="f", big.mark=",", digits=0),
Total = formatC(Total, format="f", big.mark=",", digits=0)
)
})
output$totalAMG <- renderDT({
total_AMG()
})
output$tableData <- renderDT({
filtered_data()
})
}
# Lanzar la aplicación
shinyApp(ui, server)
I am tryng to deploy the app with posit cloud. Where is my error? It works locally. Thank you community.i have created many proects and all fails, but there is an app that work well, I need help to deploy my app.
Thank you.