2017-10-18 48 views
-1

R是新的。如何訪問和編輯Rprofile?如何訪問和編輯Rprofile?

下面的帖子沒有幫助:How to modify and save Rprofile.site under Windows?

+1

請看[Quick R]中的描述(https://www.statmethods.net/interface/customizing.html) – G5W

+0

謝謝。我搜索了過去的編輯Rprofile,但是我沒有點擊過名爲'customizing StartUp File'https://www.statmethods.net/interface/customizing.html的鏈接,並且在我的提示中發現它很有幫助。 – Aitch

+0

Rprofile文件位於C:\ Program Files \ R \ R-3.4.1 \ etc中,可通過將其加載到Notepad ++進行編輯。 – Aitch

回答

2

在啓動時R將尋找在以下地方的R-簡介: (從https://csgillespie.github.io/efficientR/3-3-r-startup.html#rprofile信息)

  1. R_HOME:目錄中R已安裝。 用R.home()命令找出R_HOME的位置。
  2. HOME,用戶的主目錄。可以詢問R在哪裏,path.expand(「〜」)
  3. R的當前工作目錄。這由getwd()報告。

注意儘管可能有不同的R-Profile文件,R將只在給定的會話中使用一個。優先順序是:

當前項目>首頁> R_HOME

要創建一個特定的項目,啓動腳本創建在項目的根目錄.Rprofile文件。

您可以訪問和通過

file.edit(file.path("~", ".Rprofile")) # edit .Rprofile in HOME 
file.edit(".Rprofile") # edit project specific .Rprofile  

編輯不同.Rprofile文件有有關選項的信息,您可以設置通過

help("Rprofile") 

正如上面提到的鏈接不提供額外的細節,但在上面列出的要點應該顯示文件的位置以及如何訪問它們。

相關問題