나는이 CSV 파일 (24.1 MB) 나는 완전히 내 R 세션으로 읽을 수 있습니다. 스프레드 시트 프로그램에서 파일을 열면 112,544 행을 볼 수 있습니다. R로 읽을 때 read.csv
56,952 행 과이 경고 만 얻습니다.
cit <- read.csv("citations.CSV", row.names = NULL,
comment.char = "", header = TRUE,
stringsAsFactors = FALSE,
colClasses= "character", encoding= "utf-8")
Warning message:
In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
EOF within quoted string
다음을 사용하여 전체 파일을 R로 읽을 수 있습니다 readLines
.
rl <- readLines(file("citations.CSV", encoding = "utf-8"))
length(rl)
[1] 112545
그러나 이것을 테이블로 (R을 통해 read.csv
) R로 되돌릴 수는 없습니다 .
write.table(rl, "rl.txt", quote = FALSE, row.names = FALSE)
rl_in <- read.csv("rl.txt", skip = 1, row.names = NULL)
Warning message:
In scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
EOF within quoted string
전체 파일을 내 R
세션 으로 가져 오려면이 EOF 메시지 (경고보다 오류 인 것 같음)를 어떻게 해결하거나 해결할 수 있습니까?
CSV 파일을 읽는 다른 방법과 비슷한 문제가 있습니다.
require(sqldf)
cit_sql <- read.csv.sql("citations.CSV", sql = "select * from file")
require(data.table)
cit_dt <- fread("citations.CSV")
require(ff)
cit_ff <- read.csv.ffdf(file="citations.CSV")
여기 내 sessionInfo ()입니다
R version 3.0.1 (2013-05-16)
Platform: x86_64-w64-mingw32/x64 (64-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] tools tcltk stats graphics grDevices utils datasets methods base
other attached packages:
[1] ff_2.2-11 bit_1.1-10 data.table_1.8.8 sqldf_0.4-6.4
[5] RSQLite.extfuns_0.0.1 RSQLite_0.11.4 chron_2.3-43 gsubfn_0.6-5
[9] proto_0.3-10 DBI_0.2-7
fread
상황에서 일하는 것에 대해 어떻게 생각 하십니까? 보다 빠르기 때문에 선호합니다read.csv
. 그러나 논쟁fread
을하지 않는 것 같습니다quote
.