R 데이터프레임 행 병합

1 개요[ | ]

Combination by rows in R
R 데이터프레임 행 병합
  • SQL UNION과 비슷한 조작
  • 컬럼 이름을 기준으로 병합되므로, 컬럼 수와 이름이 일치해야 한다.[1]

2 예시[ | ]

df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name  English Math
A     Alice 90      60
A     Bob   80      NA
")
df1
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name  English Math
B     Carol NA      80
B     Dave  60      90
")
df2
rbind(df1, df2)
rbind(df2, df1)

3 같이 보기[ | ]

4 참고[ | ]

  1. 컬럼 이름을 기준으로 하므로, 컬럼의 순서가 다른 것은 괜찮다.
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}