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 기초; 형태 변환1 - reshape2에 대한 요약내용입니다.
자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.