R의 data.table로 데이터 결합하기
Scott Ritchie
Postdoctoral Researcher in Systems Genomics

1장: merge()를 사용한 데이터 조인
2장: data.table 워크플로에서의 조인
3장: 조인 문제 해결
4장: data.table 연결 및 재구성
두 테이블 간 정보를 연결하는 열
library(data.table)demographics <- data.table(name = c("Trey", "Matthew", "Angela"), gender = c(NA, "M", "F"), age = c(54, 43, 39)) shipping <- data.table(name = c("Matthew", "Trey", "Angela"), address = c("7 Mill road", "12 High street", "33 Pacific boulevard"))

tables() 함수를 사용하면 R 세션에 로드된 모든 data.table을 확인할 수 있습니다
tables()
NAME NROW NCOL MB COLS KEY
1: demographics 3 3 0 name,gender,age
2: shipping 3 2 0 name,address
Total: 0MB
str()을 사용하면 단일 data.table의 각 열 유형을 확인할 수 있습니다
str(demographics)
Classes 'data.table' and 'data.frame': 3 obs. of 3 variables:
$ name : chr "Trey" "Matthew" "Angela"
$ gender: chr NA "M" "F"
$ age : num 54 43 39
- attr(*, ".internal.selfref")=<externalptr>
demographics_all
name sex age
1: Trey NA 54
2: Matthew M 43
3: Angela F 39
4: Michelle F 63
5: Mohamed M 26
---
102: Patrick M 27
103: Wei F 41
104: Adam M 33
105: Somchai M 53
106: Alma F 19
R의 data.table로 데이터 결합하기