I work with a dataset that's in Japanese. I got the following warning message
"Warning message:
In Sys.setlocale(category = "LC_ALL", locale = "Japanese") :
OS reports request to set locale to "Japanese" cannot be honored"
when I try to set locale to Japanese language, using "Sys.setlocale(category = "LC_ALL", locale = "Japanese")".
> Sys.setlocale(category = "LC_ALL", locale = "Japanese")
[1] ""
Warning message:
In Sys.setlocale(category = "LC_ALL", locale = "Japanese") :
OS reports request to set locale to "Japanese" cannot be honored
Additionally, when I open my R script file, which has some Japanese characters inside, then those characters become something like "$B%3IU(B", but when I open a dataset in Japanese (in .csv) by read_csv, it can display normally.
Could anyone help with this ?
Thank you so much