如何處理 50GB 的大型 CSV 檔案(R 語言)?
如何處理 50GB 的大型 CSV 檔案(R 語言)? 問題 all <- read.csv.ffdf( file="<path of large file>", sep = ",", header=TRUE, VERBOSE=TRUE, first.rows=10000, next.rows=50000, ) 回答 library(sqldf) iris2 <- read.csv.sql("iris.csv", sql = "select * from file where Species = 'setosa' ")