"R 내부 조인"의 두 판 사이의 차이

4번째 줄: 4번째 줄:
;R 이너 조인, R 데이터프레임 이너 조인
;R 이너 조인, R 데이터프레임 이너 조인


<syntaxhighlight lang='r' run>
<syntaxhighlight lang='r' notebook>
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
id  math
id  math

2021년 7월 24일 (토) 17:30 판

1 개요

R DataFrame Inner Join
R 데이터프레임 내부 조인
R 이너 조인, R 데이터프레임 이너 조인
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
id  math
1   84
2   55
3   97
4   69
5   70
")
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
id  english
1   71
3   80
5   58
7   46
9   92
")
merge(x=df1, y=df2, id='id')

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}