R rbind()

1 개요[ | ]

R rbind()
  • "row bind"
  • 두 데이터프레임의 row들을 병합하는 R 함수
  • 컬럼 이름을 기준으로 병합된다.
  • 따라서, 컬럼 수와 이름이 일치해야 한다.[1]
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name  English Math
A     Alice 90      60
A     Bob   80      NA
")
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name  English Math
B     Carol NA      80
B     Dave  60      90
")
options(echo=T)
rbind(df1, df2)
rbind(df2, df1)

2 같이 보기[ | ]

3 참고[ | ]

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