반응형
R 기초; 형태 변환1 - reshape2
melt()
dcast()
install.packages("reshape2")
library(reshape2)
smiths
melt(data=smiths)
melt(data=smiths, id.vars="subject")
melt(data=smiths, measure.vars=c(2:5))
melt(data=smiths, measure.vars=c("time", "age", "weight", "height"))
반응형
'공부 > R Programming' 카테고리의 다른 글
R 기초; 고수준 및 저수준 그래픽 함수 (0) | 2021.01.23 |
---|---|
R 기초; 형태 변환2 - tidyr (0) | 2021.01.23 |
R기초; 분할-적용-결합 - dplyr (0) | 2021.01.17 |
R 기초; 집단 요약 (0) | 2021.01.16 |
R 기초; 반복 적용 - Apply Family (0) | 2021.01.16 |
댓글