R 패키지 설치 여부 체크 후, 필요시 설치 후 라이브러리 불러들이기
2020. 6. 13. 15:36ㆍ분석 R/구현
- packages 있는지 없는지 체크
- packages 체크 후에 설치하기
- packages 설치하고 라이브러리 불러들이기
list.of.packages <- c("doBy","dplyr")
new.packages <- list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)){
install.packages(new.packages)
lapply(list.of.packages, require ,
character.only = TRUE)
} else{
print("설치할 패키지(x) 패키지 로딩")
lapply(list.of.packages, require ,
character.only = TRUE)
}
728x90
'분석 R > 구현' 카테고리의 다른 글
[R][Windows 10] R 4.0에서 Tensorflow 사용해보기 간단 예제 (conda) (0) | 2020.05.04 |
---|---|
[R][Windows 10] R 4.0 에서 reticulate를 사용하여 conda에서 Tensorflow 설치해보기 (0) | 2020.05.04 |
[ R ] RandomForest tree visualization (0) | 2019.10.29 |
[R] ggplot Geom_Bar Tips (0) | 2019.10.20 |
[R] ggwordcloud example (0) | 2019.09.29 |