1. 程式人生 > >R read.table 讀取表格引數詳解

R read.table 讀取表格引數詳解

read.table(file, header = FALSE, sep = "", quote = ""'",
           dec = ".", row.names, col.names,
           as.is = !stringsAsFactors,
           na.strings = "NA", colClasses = NA, nrows = -1,
           skip = 0, check.names = TRUE, fill = !blank.lines.skip,
           strip.white = FALSE, blank.lines.skip
= TRUE, comment.char = "#", allowEscapes = FALSE, flush = FALSE, stringsAsFactors = default.stringsAsFactors(), fileEncoding = "", encoding = "unknown") header:邏輯引數。指定是否檔案第一行為變數名(列名)。 na.strings:指定缺失文字。 skip:指定讀資料跳過的行數。 nrows:指定資料讀入最大的行數。 dec:指定小數點記號。 sep:指定資料分割字元。 row.names與col.names:賦予資料行名和列名。

讀入資料其他相關函式:

readLines():按行讀入資料檔案。類似perl讀資料方式。
scan( ):將資料讀作一行向量形式。
read.delim("educ_scores.txt"):讀入文字檔案(製表符分隔)。
read.csv("educ_scores1.csv"):讀入CSV(逗號分割)。
readBin( ):讀入二進位制資料。
readChar( ):讀入字元型資料。
attach( ): 把資料框的變數連結到記憶體中.