R/R basic

tidyverse 하나면 웬만한 것 커버된다

시키테이 2022. 6. 18. 00:24
반응형

일반적으로 R을 시작할 때 깔아야 하는 기본적인 library들이 있는데 예를 들어 그래프 만들 때 쓰는 ggplot2나 data cleaning할 때 필요한 dplyr 등이 있다. 근데 이런 거 일일이 다 깔 필요없이 그냥 tidyverse library 하나 깔면 거기에 ggplot2, dplyr가 다 포함되어 있다. 

 

tidyverse에 포함된 package로는 ggplot2, dplyr, tidyr, readr, purr, tibble, stringr, forcats 등이 있다. 

 

Tidyverse packages

 

Tidyverse packages

Installation and use Install all the packages in the tidyverse by running install.packages("tidyverse"). Run library(tidyverse) to load the core tidyverse and make it available in your current R session. Learn more about the tidyverse package at https://ti

www.tidyverse.org

 

반응형