tidyverse_conflicts() al subir shiny

Hola! Tengo un problema cuando quiero subir mi shiny a shinyapps.io

Cuando corro la shiny desde R corre sin ningún problema y no me figura ningún Warning message.

Al querer levantar la shiny me figura el siguiente mensaje:

── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
:heavy_check_mark: ggplot2 3.3.5 :heavy_check_mark: purrr 0.3.4
:heavy_check_mark: tibble 3.1.3 :heavy_check_mark: dplyr 1.0.7
:heavy_check_mark: tidyr 1.1.3 :heavy_check_mark: stringr 1.4.0
:heavy_check_mark: readr 2.0.0 :heavy_check_mark: forcats 0.5.1
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
:heavy_multiplication_x: dplyr::filter() masks stats::filter()
:heavy_multiplication_x: dplyr::lag() masks stats::lag()
Error in value[3L] : string multibyte 7 inválida
Calls: local ... tryCatch -> tryCatchList -> tryCatchOne ->
Ejecución interrumpida

Para evitar el conflicto, en los códigos que utilizo filter aplico dplyr::filter


estim_salta <- df_estimaciones %>% dplyr::filter(Provincia=="SALTA"& Campana=="2019/20")

The conflict is just a warning and does not cause your app to fail, the real problem is the invalid multibyte string, this usually happens when there are accentuated characters in your app's code.

Shiny is not non-ASCII friendly but you can try setting options(encoding = "UTF-8") before deploying your app to see if it helps.

Nota: Por favor intenta hacer tus preguntas en inglés, ya que es el idioma preferido aquí y al usar español estás excluyendo a la mayoría de la conversación, reduciendo así tus posibilidades de obtener ayuda.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.