R工作目錄

2021-09-25 06:59:56 字數 1119 閱讀 8844

說明:斜體為r語言**

01確保r軟體處於可使用狀態

r is free software and comes with absolutely no warranty.

you are welcome to redistribute it under certain conditions.

type 『license()』 or 『licence()』 for distribution details.

r is a collaborative project with many contributors.

type 『contributors()』 for more information and

『citation()』 on how to cite r or r packages in publications.

type 『demo()』 for some demos, 『help()』 for on-line help, or

『help.start()』 for an html browser inte***ce to help.

type 『q()』 to quit r.

[workspace loaded from ~/.rdata]

>

安裝成功後,r console工作區域每行以 > 開頭。

02獲取工作目錄

若要在當前目錄下讀取檔案,需要獲取當前的工作目錄。

獲取工作目錄的函式: getwd()

例:> getwd()

[1] 「c:/users/administrator/documents」

03設定/改變工作目錄

為了方便讀取本地檔案,需要將工作目錄設定為目標檔案所在的儲存路徑。

設定工作目錄的函式: setwd(「工作目錄的資料夾路徑」).

注意:工作目錄的資料夾路徑需要用 英文雙引號 包圍。

例:將工作目錄設定為e盤下的dataanalysis資料夾

*> setwd(「e:/dataanalysis」)

getwd()

[1] 「e:/dataanalysis」*

R語言 路徑設定與工作目錄修改

軟體的路徑設定對於電腦的記憶體管理 工作資料的儲存和自己的尋根究底十分重要。所以,合理的設定r中相關路徑,能更加方便快捷的管理自己的相關檔案,提高學習r語言的效率,建立自己的習慣體系。r中的路徑設定主要有以下幾個方面 1.使用getwd 函式來顯示當前工作目錄 getwd 2.使用setwd 函式更...

R的清洗工作

find columns with na or nan tran is the dataframe name find completed obs.w all variables tran.comp class and statistics value of the dataset in overa...

VS工作目錄,輸出目錄

預設情況下 輸出目錄 和 輸出檔案 兩個屬性對應的目錄是一樣的,這樣用著方便 當然,輸出檔案的值在輸出目錄的值的基礎上還包含有exe檔名 如果兩個不一樣,則中間生成的鏈結器用的如xx.ilk和xx.pdb檔案等在輸出目錄,而最終生成的xx.exe檔案在 輸出檔案 屬性設定的目錄中。vs中工作目錄的設...