반응형
일반적으로 R을 시작할 때 깔아야 하는 기본적인 library들이 있는데 예를 들어 그래프 만들 때 쓰는 ggplot2나 data cleaning할 때 필요한 dplyr 등이 있다. 근데 이런 거 일일이 다 깔 필요없이 그냥 tidyverse library 하나 깔면 거기에 ggplot2, dplyr가 다 포함되어 있다.
tidyverse에 포함된 package로는 ggplot2, dplyr, tidyr, readr, purr, tibble, stringr, forcats 등이 있다.
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
반응형
'R > R basic' 카테고리의 다른 글
| 정렬(오름차순, 내림차순)할 때 쓰는 함수: arrange (0) | 2022.06.23 |
|---|---|
| 연속된 숫자 만들기 rep 함수 (0) | 2022.06.21 |
| 한국어로 파일 추출이 안 될 때 (sys.setlocale) (0) | 2022.06.15 |
| 특정 조건 행 (row) 갯수 세기 dplyr::count (0) | 2022.06.14 |
| 열(row) 제거하기 (0) | 2022.06.09 |