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

3번째 줄: 3번째 줄:
;R 데이터프레임 열 병합
;R 데이터프레임 열 병합


<source lang='r' run>
<source lang='r' notebook>
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name
Class Name
11번째 줄: 11번째 줄:
B    Dave
B    Dave
")
")
df1
</source>
<source lang='r' notebook>
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
English Math
English Math
18번째 줄: 21번째 줄:
60      90
60      90
")
")
options(echo=T)
df2
</source>
<source lang='r' notebook>
cbind(df1, df2)
cbind(df1, df2)
</source>
<source lang='r' notebook>
cbind(df2, df1)
cbind(df2, df1)
</source>
</source>

2021년 4월 27일 (화) 23:49 판

1 개요

R row bind
R 데이터프레임 열 병합
df1 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
Class Name
A     Alice
A     Bob
B     Carol
B     Dave
")
df1
df2 <- read.table( header=TRUE, stringsAsFactors=FALSE, text="
English Math
90      60
80      NA
NA      80
60      90
")
df2
cbind(df1, df2)
cbind(df2, df1)

2 같이 보기

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