The Polish characters are not appearing properly in the R console.
> a <- "Wrocław"
> a
[1] "Wroclaw"
This is with the following default locale settings:
> Sys.getlocale()
[1] "LC_COLLATE=English_United States.1252;LC_CTYPE=English_United States.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252"
After running this:
Sys.setlocale("LC_ALL", "Polish")
I get this:
> a <- "Wrocław"
> a
[1] "Wroc³aw"
Apparently, something is wrong with my locale setup. How do I fix it?
My environment: R: 3.4.0 / Rstudio: 1.0.143 / OS: Windows 10