Set locale to system default UTF-8

后端 未结 3 2099
盖世英雄少女心
盖世英雄少女心 2020-11-28 10:15

When running R inside rApache, the locale is inherited from the Apache webserver, and therefore Sys.getlocale() is always equal to \"C\". I would l

3条回答
  •  遥遥无期
    2020-11-28 11:19

    Try this:

    Sys.setlocale(category = "LC_ALL", locale = "English_United States.1252")
    

提交回复
热议问题