tidyr:: (2) Split or combine: separate, separate_rows, unite
[참고 페이지] https://m.blog.naver.com/bosongmoon/221587219214 https://gomguard.tistory.com/22 (추가 argument 설명 有) 지금 설명할 것은, 'Use these functions to split or combine cells into individual, isolated values'에 관련된 두 함수다. Spilt or combine Cells (1) separate(data, col, into, sep, remove = T, convert = F, extra = "warn", fill = "warn", ...) table3 %>% separate(rate, into= c("'cases', 'pop')) 또는, separate(t..