R語言CSV檔案


在R中,我們可以從儲存在R環境外部的檔案讀取資料。還可以將資料寫入由作業系統儲存和存取的檔案。 R可以讀取和寫入各種檔案格式,如:csvexcelxml等。

在本章中,我們將學習如何從csv檔案中讀取資料,然後將資料寫入csv檔案。 該檔案應該存在於當前工作目錄中,以方便R可以讀取它。 當然,也可以設定自己的目錄,並從那裡讀取檔案。

獲取和設定工作目錄

可以使用getwd()函式來檢查R工作區指向哪個目錄,使用setwd()函式設定新的工作目錄。

# Get and print current working directory.
print(getwd())

# Set current working directory.
# setwd("/web/com")
setwd("F:/worksp/R")

# Get and print current working directory.
print(getwd())

當我們執行上述程式碼時,會產生以下結果 -

[1] "C:/Users/Administrator/Documents"
[1] "F:/worksp/R"

注意: 此結果取決於您的作業系統和您當前正在工作的目錄。

作為CSV檔案輸入

csv檔案是一個文字檔案,其中列中的值用逗號分隔。假設下面的資料存在於名為input.csv 的檔案中。

您可以使用Windows記事本通過複製和貼上此資料來建立此檔案。使用記事本中的另存為所有檔案(*.*)選項將檔案另存為:input.csv(在目錄:F:/worksp/R 下載)。

id,name,salary,start_date,dept
1,Rick,623.3,2012-01-01,IT
2,Dan,515.2,2013-09-23,Operations
3,Michelle,611,2014-11-15,IT
4,Ryan,729,2014-05-11,HR
 ,Gary,843.25,2015-03-27,Finance
6,Nina,578,2013-05-21,IT
7,Simon,632.8,2013-07-30,Operations
8,Guru,722.5,2014-06-17,Finance

讀取CSV檔案

以下是read.csv()函式的一個簡單範例,用於讀取當前工作目錄中可用的CSV檔案 -

setwd("F:/worksp/R")
data <- read.csv("input.csv")
print(data)

當我們執行上述程式碼時,會產生以下結果 -

> data <- read.csv("input.csv")
> print(data)
  id     name salary start_date       dept
1  1     Rick 623.30 2012-01-01         IT
2  2      Dan 515.20 2013-09-23 Operations
3  3 Michelle 611.00 2014-11-15         IT
4  4     Ryan 729.00 2014-05-11         HR
5 NA     Gary 843.25 2015-03-27    Finance
6  6     Nina 578.00 2013-05-21         IT
7  7    Simon 632.80 2013-07-30 Operations
8  8     Guru 722.50 2014-06-17    Finance

分析CSV檔案

預設情況下,read.csv()函式將輸出作為資料影格。這可以很容易地檢視到,此外,我們可以檢查列和行的數量。

setwd("F:/worksp/R")
data <- read.csv("input.csv")

print(is.data.frame(data))
print(ncol(data))
print(nrow(data))

當我們執行上述程式碼時,會產生以下結果 -

[1] TRUE
[1] 5
[1] 8

當我們在資料影格中讀取資料,可以應用所有適用於資料影格的函式,如下一節所述。

獲得最高工資

# Create a data frame.
data <- read.csv("input.csv")

# Get the max salary from data frame.
sal <- max(data$salary)
print(sal)

當我們執行上述程式碼時,會產生以下結果 -

[1] 843.25

獲得最高工資的人員的詳細資訊

可以使用過濾條件獲取符合特定的行,類似於SQL的where子句。

setwd("F:/worksp/R")
# Create a data frame.
data <- read.csv("input.csv")

# Get the max salary from data frame.
sal <- max(data$salary)

# Get the person detail having max salary.
retval <- subset(data, salary == max(salary))
print(retval)

當我們執行上述程式碼時,會產生以下結果 -

      id    name  salary  start_date    dept
5     NA    Gary  843.25  2015-03-27    Finance

獲取IT部門的所有人員

# Create a data frame.
data <- read.csv("input.csv")

retval <- subset( data, dept == "IT")
print(retval)

當我們執行上述程式碼時,會產生以下結果 -

       id   name      salary   start_date   dept
1      1    Rick      623.3    2012-01-01   IT
3      3    Michelle  611.0    2014-11-15   IT
6      6    Nina      578.0    2013-05-21   IT

獲取IT部門薪水在600以上的人員

setwd("F:/worksp/R")
# Create a data frame.
data <- read.csv("input.csv")

info <- subset(data, salary > 600 & dept == "IT")
print(info)

當我們執行上述程式碼時,會產生以下結果 -

       id   name      salary   start_date   dept
1      1    Rick      623.3    2012-01-01   IT
3      3    Michelle  611.0    2014-11-15   IT

獲得在2014年或以後入職的人員

setwd("F:/worksp/R")
# Create a data frame.
data <- read.csv("input.csv")

retval <- subset(data, as.Date(start_date) > as.Date("2014-01-01"))
print(retval)

當我們執行上述程式碼時,會產生以下結果 -

       id   name     salary   start_date    dept
3      3    Michelle 611.00   2014-11-15    IT
4      4    Ryan     729.00   2014-05-11    HR
5     NA    Gary     843.25   2015-03-27    Finance
8      8    Guru     722.50   2014-06-17    Finance

寫入CSV檔案

R可以從現有資料影格中來建立csv檔案。write.csv()函式用於建立csv檔案。 該檔案在工作目錄中建立。參考以下範例程式碼 -

setwd("F:/worksp/R")
# Create a data frame.
data <- read.csv("input.csv")
retval <- subset(data, as.Date(start_date) > as.Date("2014-01-01"))
# print(retval)
# Write filtered data into a new file.
write.csv(retval,"output.csv")
newdata <- read.csv("output.csv")
print(newdata)

當我們執行上述程式碼時,會產生以下結果 -

  X      id   name      salary   start_date    dept
1 3      3    Michelle  611.00   2014-11-15    IT
2 4      4    Ryan      729.00   2014-05-11    HR
3 5     NA    Gary      843.25   2015-03-27    Finance
4 8      8    Guru      722.50   2014-06-17    Finance

這裡列X來自資料集更新器。在編寫檔案時可以使用其他引數來刪除它。

setwd("F:/worksp/R")
# Create a data frame.
data <- read.csv("input.csv")
retval <- subset(data, as.Date(start_date) > as.Date("2014-01-01"))

# Write filtered data into a new file.
write.csv(retval,"output.csv", row.names = FALSE)
newdata <- read.csv("output.csv")
print(newdata)

當我們執行上述程式碼時,會產生以下結果 -

      id    name      salary   start_date    dept
1      3    Michelle  611.00   2014-11-15    IT
2      4    Ryan      729.00   2014-05-11    HR
3     NA    Gary      843.25   2015-03-27    Finance
4      8    Guru      722.50   2014-06-17    Finance