You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use dfSummary in a shiny app, but get the following error with some datasets. It seems the error has something to do with unicode character encoding:
Error in gsub("\\\n", "\n", cell) : input string 1 is invalid
In addition: Warning message:
In gsub("\\\n", "\n", cell) :
unable to translate 'Ao de la encuesta' to a wide string
This is a known problem with encoding/rendering of unicode characters. Various people in other fora have suggested either using useBytes=TRUE with gsub to fix this, or changing the locale settings. But neither seems to have any effect.
Would appreciate any help.
The text was updated successfully, but these errors were encountered:
I am trying to use dfSummary in a shiny app, but get the following error with some datasets. It seems the error has something to do with unicode character encoding:
print(dfSummary(dthh),method="render", headings = FALSE, bootstrap.css = FALSE)
The error I get is:
In addition: Warning message:
In gsub("\\\n", "\n", cell) :
unable to translate 'Ao de la encuesta' to a wide string
This is a known problem with encoding/rendering of unicode characters. Various people in other fora have suggested either using useBytes=TRUE with gsub to fix this, or changing the locale settings. But neither seems to have any effect.
Would appreciate any help.
The text was updated successfully, but these errors were encountered: