선택한 열만 읽음
예를 들어 아래 데이터의 각 연도에 대한 첫 6개월(7열)만 읽는 방법을 알려줄 수 있는 사람이십니까?read.table()
?
Year Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
2009 -41 -27 -25 -31 -31 -39 -25 -15 -30 -27 -21 -25
2010 -41 -27 -25 -31 -31 -39 -25 -15 -30 -27 -21 -25
2011 -21 -27 -2 -6 -10 -32 -13 -12 -27 -30 -38 -29
데이터가 파일에 있다고 가정합니다.data.txt
사용할 수 있습니다.colClasses
의 주장.read.table()
열을 건너뜁니다.여기 처음 7개 열에 있는 데이터는"integer"
나머지 6개 열은 다음과 같이 설정했습니다."NULL"
건너뛰어야 함을 나타냅니다.
> read.table("data.txt", colClasses = c(rep("integer", 7), rep("NULL", 6)),
+ header = TRUE)
Year Jan Feb Mar Apr May Jun
1 2009 -41 -27 -25 -31 -31 -39
2 2010 -41 -27 -25 -31 -31 -39
3 2011 -21 -27 -2 -6 -10 -32
바꾸다"integer"
에서 자세히 설명한 대로 허용된 유형 중 하나로.?read.table
실제 데이터 유형에 따라 다릅니다.
data.txt
다음과 같이 표시됩니다.
$ cat data.txt
"Year" "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
2009 -41 -27 -25 -31 -31 -39 -25 -15 -30 -27 -21 -25
2010 -41 -27 -25 -31 -31 -39 -25 -15 -30 -27 -21 -25
2011 -21 -27 -2 -6 -10 -32 -13 -12 -27 -30 -38 -29
를 사용하여 생성되었습니다.
write.table(dat, file = "data.txt", row.names = FALSE)
어디에dat
이라
dat <- structure(list(Year = 2009:2011, Jan = c(-41L, -41L, -21L), Feb = c(-27L,
-27L, -27L), Mar = c(-25L, -25L, -2L), Apr = c(-31L, -31L, -6L
), May = c(-31L, -31L, -10L), Jun = c(-39L, -39L, -32L), Jul = c(-25L,
-25L, -13L), Aug = c(-15L, -15L, -12L), Sep = c(-30L, -30L, -27L
), Oct = c(-27L, -27L, -30L), Nov = c(-21L, -21L, -38L), Dec = c(-25L,
-25L, -29L)), .Names = c("Year", "Jan", "Feb", "Mar", "Apr",
"May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"), class = "data.frame",
row.names = c(NA, -3L))
열의 개수를 미리 알 수 없는 경우 효용 함수count.fields
파일을 읽고 각 줄의 필드 수를 계산합니다.
## returns a vector equal to the number of lines in the file
count.fields("data.txt", sep = "\t")
## returns the maximum to set colClasses
max(count.fields("data.txt", sep = "\t"))
데이터 집합에서 특정 열 집합을 읽으려면 다음과 같은 몇 가지 다른 옵션이 있습니다.
포함fread
에서data.table
-패키지:
다음을 사용하여 원하는 열을 지정할 수 있습니다.select
매개 변수:fread
에서data.table
꾸러미열 이름 또는 열 번호의 벡터를 사용하여 열을 지정할 수 있습니다.
예제 데이터 집합의 경우:
library(data.table)
dat <- fread("data.txt", select = c("Year","Jan","Feb","Mar","Apr","May","Jun"))
dat <- fread("data.txt", select = c(1:7))
또는 다음을 사용할 수 있습니다.drop
읽지 말아야 할 열을 나타내는 매개 변수:
dat <- fread("data.txt", drop = c("Jul","Aug","Sep","Oct","Nov","Dec"))
dat <- fread("data.txt", drop = c(8:13))
모든 결과:
> data
Year Jan Feb Mar Apr May Jun
1 2009 -41 -27 -25 -31 -31 -39
2 2010 -41 -27 -25 -31 -31 -39
3 2011 -21 -27 -2 -6 -10 -32
업데이트: 원하지 않을 때fread
데이터를 반환하려면 , 테이블을 사용합니다.data.table = FALSE
-매개변수, 예: fread("data.txt", select = c(1:7), data.table = FALSE)
포함read.csv.sql
에서sqldf
-패키지:
또 다른 대안은read.csv.sql
의 기능sqldf
패키지:
library(sqldf)
dat <- read.csv.sql("data.txt",
sql = "select Year,Jan,Feb,Mar,Apr,May,Jun from file",
sep = "\t")
와 함께read_*
-에서 가져온readr
-패키지:
library(readr)
dat <- read_table("data.txt",
col_types = cols_only(Year = 'i', Jan = 'i', Feb = 'i', Mar = 'i',
Apr = 'i', May = 'i', Jun = 'i'))
dat <- read_table("data.txt",
col_types = list(Jul = col_skip(), Aug = col_skip(), Sep = col_skip(),
Oct = col_skip(), Nov = col_skip(), Dec = col_skip()))
dat <- read_table("data.txt", col_types = 'iiiiiii______')
설명서에서 사용된 문자에 대한 설명은 다음과 같습니다.col_types
:
각 문자는 하나의 열을 나타냅니다. c = 문자, i = 정수, n = 숫자, d = 이중, l = 논리적, D = 날짜, T = 날짜 시간, t = 시간, ? = 추측 또는 _/ - 열을 건너뛰려면
JDBC를 사용하여 이를 달성할 수도 있습니다.샘플 csv 파일을 생성해 보겠습니다.
write.table(x=mtcars, file="mtcars.csv", sep=",", row.names=F, col.names=T) # create example csv file
다음 링크에서 CSV JDBC 드라이버를 다운로드하여 저장합니다. http://sourceforge.net/projects/csvjdbc/files/latest/download
> library(RJDBC)
> path.to.jdbc.driver <- "jdbc//csvjdbc-1.0-18.jar"
> drv <- JDBC("org.relique.jdbc.csv.CsvDriver", path.to.jdbc.driver)
> conn <- dbConnect(drv, sprintf("jdbc:relique:csv:%s", getwd()))
> head(dbGetQuery(conn, "select * from mtcars"), 3)
mpg cyl disp hp drat wt qsec vs am gear carb
1 21 6 160 110 3.9 2.62 16.46 0 1 4 4
2 21 6 160 110 3.9 2.875 17.02 0 1 4 4
3 22.8 4 108 93 3.85 2.32 18.61 1 1 4 1
> head(dbGetQuery(conn, "select mpg, gear from mtcars"), 3)
MPG GEAR
1 21 4
2 21 4
3 22.8 4
vroom 패키지는 가져오는 동안 이름별로 열을 선택/삭제하는 'tidy' 방법을 제공합니다.문서: https://www.tidyverse.org/blog/2019/05/vroom-1-0-0/ #column-messages
열 선택(col_select)
vroom 인수 'col_select'를 사용하면 열을 더 쉽게 선택하거나 생략할 수 있습니다.col_select의 인터페이스는 dplyr::select()와 동일합니다.
Select columns by namedata <- vroom("flights.tsv", col_select = c(year, flight, tailnum))
#> Observations: 336,776
#> Variables: 3
#> chr [1]: tailnum
#> dbl [2]: year, flight
#>
#> Call `spec()` for a copy-pastable column specification
#> Specify the column types with `col_types` to quiet this message
Drop columns by name
data <- vroom("flights.tsv", col_select = c(-dep_time, -air_time:-time_hour))
#> Observations: 336,776
#> Variables: 13
#> chr [4]: carrier, tailnum, origin, dest
#> dbl [9]: year, month, day, sched_dep_time, dep_delay, arr_time, sched_arr_time, arr...
#>
#> Call `spec()` for a copy-pastable column specification
#> Specify the column types with `col_types` to quiet this message
Use the selection helpers
data <- vroom("flights.tsv", col_select = ends_with("time"))
#> Observations: 336,776
#> Variables: 5
#> dbl [5]: dep_time, sched_dep_time, arr_time, sched_arr_time, air_time
#>
#> Call `spec()` for a copy-pastable column specification
#> Specify the column types with `col_types` to quiet this message
Or rename columns by name
data <- vroom("flights.tsv", col_select = list(plane = tailnum, everything()))
#> Observations: 336,776
#> Variables: 19
#> chr [ 4]: carrier, tailnum, origin, dest
#> dbl [14]: year, month, day, dep_time, sched_dep_time, dep_delay, arr_time, sched_arr...
#> dttm [ 1]: time_hour
#>
#> Call `spec()` for a copy-pastable column specification
#> Specify the column types with `col_types` to quiet this message
data
#> # A tibble: 336,776 x 19
#> plane year month day dep_time sched_dep_time dep_delay arr_time
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 N142… 2013 1 1 517 515 2 830
#> 2 N242… 2013 1 1 533 529 4 850
#> 3 N619… 2013 1 1 542 540 2 923
#> 4 N804… 2013 1 1 544 545 -1 1004
#> 5 N668… 2013 1 1 554 600 -6 812
#> 6 N394… 2013 1 1 554 558 -4 740
#> 7 N516… 2013 1 1 555 600 -5 913
#> 8 N829… 2013 1 1 557 600 -3 709
#> 9 N593… 2013 1 1 557 600 -3 838
#> 10 N3AL… 2013 1 1 558 600 -2 753
#> # … with 336,766 more rows, and 11 more variables: sched_arr_time <dbl>,
#> # arr_delay <dbl>, carrier <chr>, flight <dbl>, origin <chr>,
#> # dest <chr>, air_time <dbl>, distance <dbl>, hour <dbl>, minute <dbl>,
#> # time_hour <dttm>
다음과 같이 수행합니다.
df = read.table("file.txt", nrows=1, header=TRUE, sep="\t", stringsAsFactors=FALSE)
colClasses = as.list(apply(df, 2, class))
needCols = c("Year", "Jan", "Feb", "Mar", "Apr", "May", "Jun")
colClasses[!names(colClasses) %in% needCols] = list(NULL)
df = read.table("file.txt", header=TRUE, colClasses=colClasses, sep="\t", stringsAsFactors=FALSE)
언급URL : https://stackoverflow.com/questions/5788117/only-read-selected-columns
'source' 카테고리의 다른 글
클래스에 정의된 기능이 있는지 확인하는 가장 빠른 방법은 무엇입니까? (0) | 2023.07.08 |
---|---|
TypeScript의 MIME-Type은 무엇입니까? (0) | 2023.07.08 |
CSS calc() 함수의 Sass 변수 (0) | 2023.07.08 |
어떻게 빈 그림을 그릴까요? (0) | 2023.07.08 |
Gitdiff 출력을 파일 보존 색상으로 출력 (0) | 2023.07.08 |