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..
tidyr:: (1) reshape function: gather, spread
[참고 페이지] https://m.blog.naver.com/bosongmoon/221587219214 https://gomguard.tistory.com/22 지금 설명할 것은, 'Reshape data: change the layout of values in a table'에 관련된 두 함수다. Reshape Data 1. gather(data, key, value, ..., na.rm = F, convert = F, factor_key = F) table4a %>% gather('1999', '2000', key='year', value='cases') 또는, gather(table4a, '1999', '2000', key='year', value='cases') = columns: 1999, 20..