일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 2025년도 미국 관세
- css 리스크
- 25년 3월 증시 분석
- 주식 데이터 수집
- 관세 설명
- 2025년 3월 6일 미국 증시 분석
- jupyter notebook PDF
- 스코어카드 예시
- 25년 3월 12일 미국 증시 분석
- 트럼프 미국 관세
- 25년 3월 미국 증시 분석
- 코딩 사이트 정리
- 미장 분석
- css 리스크관리
- 딥러닝
- 트럼프 2025년 미국 관세
- css risk
- 연체 css
- Python Numpy
- 25년 3월 11일 미국 증시 분석
- 미국 투자 분석
- 취업사이트 정리
- 미국 증시 분석
- 미국 시황
- 연체용어
- 스코어카드 만드는법
- 딥러닝 제대로 시작하기
- Cudnn 버전 확인
- python pandas
- 미국 증시 방향성
Archives
- Today
- Total
koos808
[R] R Package Version 한번에 확인하기 본문
728x90
반응형
-
컴퓨터/서버에 설치되어 있는 R Packages Version 간편하게 확인하기
-
session <- sessionInfo() # Other Packages version otherpkg_version<-data.table() otherpkg_list<-names(session$otherPkgs) for(i in 1:length(otherpkg_list)){ set<-cbind(otherpkg_list[i],session$otherPkgs[otherpkg_list[i]][[1]]$Version) otherpkg_version<-rbind(otherpkg_version,set) } colnames(otherpkg_version) = c("Packages","Version") # LoadedOnly Packages version loadpkg_version<-data.table() load_list<-names(session$loadedOnly) for(i in 1:length(load_list)){ set<-cbind(load_list[i],session$loadedOnly[load_list[i]][[1]]$Version) loadpkg_version<-rbind(loadpkg_version,set) } colnames(loadpkg_version) = c("Packages","Version") totalpkg_version<-rbind(otherpkg_version,loadpkg_version)
-
728x90
반응형
'R' 카테고리의 다른 글
[R] R 리스트 병합 (0) | 2021.03.08 |
---|---|
[R] 문자열 중 원하는 문자로 시작하는 데이터만 추출 (0) | 2021.03.08 |
[R] 여러 패키지 한번에 불러오기 (0) | 2021.03.08 |
[R] R 문자열 대소문자 일괄적으로 바꾸기 - tolower(), toupper() (0) | 2021.03.08 |
[R] R 캐릭터 타입의 컬럼에서 Split하여 새로운 변수로 추가하기 (0) | 2021.03.08 |