Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 인공지능
- BigData
- TigerGraph
- 연합학습
- 그래프 질의언어
- RStudio
- TensorFlow
- graph
- SparkML
- 분산 병렬 처리
- 그래프 에코시스템
- GSQL
- Graph Ecosystem
- 그래프
- GraphX
- Federated Learning
- GDB
- 그래프 데이터베이스
- graph database
- r
- 빅데이터
- SQL
- RDD
- Neo4j
- DeepLearning
- Graph Tech
- 딥러닝
- spark
- Cypher
- Python
Archives
- Today
- Total
Hee'World
[R_Error] Error in loadNamespace(i, c(lib.loc, .libPaths())) : 본문
Programming/R
[R_Error] Error in loadNamespace(i, c(lib.loc, .libPaths())) :
Jonghee Jeon 2013. 11. 1. 19:26ggplot2 패키지를 로드하려다가 아래와 같은 에러 발생하여 ggplot2패키지를
로드 못하는 상황이 발생하였다.
------------------------------------------------------------------
> library(ggplot2) Error in loadNamespace(i, c(lib.loc, .libPaths())) : ‘colorspace’ 라는 이름의 패키지는 없습니다 추가정보:경고 메시지가 손실되었습니다 패키지 ‘ggplot2’ 는 R 버전 2.15.3 에서 작성되었습니다 에러:'‘ggplot2’' 에 대한 패키지/네임스페이스 로드가 실패했습니다 >
-----------------------------------------------------------------
여러 삽질을 하던 중 아주 간단히 해결이 되었다. 에러 메시지를 보다보면
'colorspace'라는 패키지가 없다고 한다. 그래서 colorspace 패키지를
설치하였다.
---------------------------------------------------------------
> install.packages("colorspace") Installing package(s) into ‘C:/Users/JeonJongHee/Documents/R/win-library/2.15’ (as ‘lib’ is unspecified) URL 'http://cran.rstudio.com/bin/windows/contrib/2.15/colorspace_1.2-4.zip'를 시도하고 있습니다 Content type 'application/zip' length 398039 bytes (388 Kb) 열린 URL downloaded 388 Kb package ‘colorspace’ successfully unpacked and MD5 sums checked The downloaded binary packages are in C:\Users\JeonJongHee\AppData\Local\Temp\Rtmp4OvAPF\downloaded_packages >> library(ggplot2)
패키지 'ggplot2' 는 R 버전 2.15.3 에서 작성되었습니다.
>
colorspace 패키지를 설치 한뒤 ggplot2 패키지를 로드하니 매우 잘된다....
ㅜ.,ㅜ
끝..........ㅠㅠ
'Programming > R' 카테고리의 다른 글
tapply, aggregate, by 함수 (0) | 2014.03.29 |
---|---|
R의 기본 자료형 (0) | 2014.03.29 |
기초 통계 용어 (Outlier) (0) | 2013.10.31 |
R을 위한 기초 통계 (0) | 2013.10.29 |
R studio 설치 (0) | 2013.10.10 |
Comments