세로형
Wide to Long 2
dat <- read.table(header=T, text=' name height.t1 weight.t1 height.t2 weight.t2 height.t3 weight.t3 Sohn 158 49 166 56 170 60 Mija 155 44 160…
전처리
가로형/세로형 변환(reshape2::melt/dcast)
데이터 준비 library(dplyr) library(tidyr) mtcars$name = rownames(mtcars); rownames(mtcars) = NULL mtcars %>% select(name, am, mpg, cyl, disp) -> mcars head(mcars, 4) ##…
세로형
Long to Wide form
긴 형태(Long form),넓은 형태(Wide form) 변환 pdf 버전 영어로 Long form/Wide form은 우리나라 말로 직역하면 긴 형태, 넓은 형태겠지만, 세로형, 가로형으로 번역한…