更改R的时间区域设置

时间:2011-11-16 02:26:36

标签: r time locale

这是我的sessionInfo()

R version 2.14.0 (2011-10-31)
Platform: i386-pc-mingw32/i386 (32-bit)

locale:
[1] LC_COLLATE=Chinese (Traditional)_Hong Kong S.A.R..950 
[2] LC_CTYPE=Chinese (Traditional)_Hong Kong S.A.R..950   
[3] LC_MONETARY=Chinese (Traditional)_Hong Kong S.A.R..950
[4] LC_NUMERIC=C                                          
[5] LC_TIME=Chinese (Traditional)_Hong Kong S.A.R..950    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
[1] tools_2.14.0

我尝试使用Sys.setlocale("LC_TIME", "en_US.UTF-8")转换日期输出,但它给了我这个错误:

> Sys.setlocale("LC_TIME", "en_US.UTF-8")
[1] ""
Warning message:
In Sys.setlocale("LC_TIME", "en_US.UTF-8") :
  OS reports request to set locale to "en_US.UTF-8" cannot be honored

我想知道为什么,我该怎么办?感谢。

3 个答案:

答案 0 :(得分:23)

对于Windows:

Sys.setlocale("LC_TIME", "English")

答案 1 :(得分:12)

Sys.setlocale("LC_TIME", "C")

似乎更安全,当“英语”产生“无法兑现”警告时起作用。

答案 2 :(得分:4)

窗?如果是这样,R安装和管理手册会在此处查看有关有效区域设置的信息:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/html/_crt_language_and_country_strings.asp

您可以帮助您说明您的目标是什么。更改日期可能不需要更改您的区域设置。