0
votes

I am a newbie, loading data (data(iris)) into R. Everything is fine but when I do View(iris), the Species names in the table are shown in a different language. Wondering if there's a bug or something? Please see an example below.

iris

Some details that might be helpful in understanding the issue: R version 4.0.1 (2020-06-06) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 10 x64 (build 18362)

locale: 1 LC_COLLATE=English_Australia.1252 LC_CTYPE=English_Australia.1252 LC_MONETARY=English_Australia.1252 LC_NUMERIC=C LC_TIME=English_Australia.1252

1

1 Answers

0
votes

Try to run Sys.getlocale() in RStudio, maybe you have some config problem in localization:

Sys.getlocale()

If you see something unexpected (like some different language settings etc.), you can set this to all to English:

Sys.setlocale("LC_ALL","English")
#> [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"

See more in documentation - hope this helps!