"R 데이터프레임 행 병합"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
* 컬럼 이름을 기준으로 병합되므로, 컬럼 수와 이름이 일치해야 한다.<ref>컬럼 이름을 기준으로 하므로, 컬럼의 순서가 다른 것은 괜찮다.</ref>
* 컬럼 이름을 기준으로 병합되므로, 컬럼 수와 이름이 일치해야 한다.<ref>컬럼 이름을 기준으로 하므로, 컬럼의 순서가 다른 것은 괜찮다.</ref>


<source lang='r'>
<source lang='r' run>
options(echo=T)
options(echo=T)
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="

2020년 4월 7일 (화) 19:06 판

1 개요

R 데이터프레임 병합
  • SQL UNION과 비슷한 조작
  • 컬럼 이름을 기준으로 병합되므로, 컬럼 수와 이름이 일치해야 한다.[1]
options(echo=T)
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
")
rbind(df1, df2)
rbind(df2, df1)

2 같이 보기

3 참고

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