我在新计算机上安装了RStudio,并且已经开发出编码问题。当我在控制台中输入带重音的文本时(没有文件写入或阅读,只是简单的控制台)我失去捷克口音(如本例所示 - 注意重音的N和Č)
> "Ňuf ňuf ňufičky"
[1] "Nuf nuf nuficky"
我知道这是一个设置问题 - 我有其他R安装行为正确 - 但我无法在我的设置中找到确切的位置来强制UTF-8行为。任何帮助将不胜感激。
我的会话信息是:
R version 3.4.2 (2017-09-28)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)
Matrix products: default
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] compiler_3.4.2 tools_3.4.2 yaml_2.1.14
答案 0 :(得分:3)
为了子孙后代的利益 - 我通过将代码页设置为1250(同时将美国英语作为我的语言)克服了我的问题。
if (.Platform$OS.type == 'windows') {
Sys.setlocale(category = 'LC_ALL','English_United States.1250')
} else {
Sys.setlocale(category = 'LC_ALL','en_US.UTF-8')
}
<。>在.Rprofile 中
答案 1 :(得分:1)
也许:
new.locale <- ifelse(.Platform$OS.type=="windows", "Czech_Czech Republic.1250", "en_US.UTF-8")
Sys.setlocale("LC_CTYPE", new.locale)
还要学会指定您的操作系统。