How to change the R language?

5

When I install the tag on my machine I noticed that the menus and the exits of the console were all in Portuguese.

How do I change to English? Within RGui I did not find any option to change the language and it is not possible to reinstall the on my machine (corporate environment and I do not have local Administrator access).

    
asked by anonymous 29.01.2015 / 14:39

2 answers

6

Go to the folder where the R was installed that should look like this:

EntertheetcfolderandeditthefileRConsole:

Change the line that starts with language = and put language = en .

    
29.01.2015 / 14:46
2

Two other ways to change the language of R are:

  • Run the command below in the console of R , then close and open again (here it worked)

    Sys.setenv(LANGUAGE = "en")
    
  • Add to the shortcut of R the argument LANGUAGE = EN

  • 29.01.2015 / 18:58