Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 몰입 줄거리
- 돈의 속성이란
- 자산늘리는법
- 오디오 텍스트 변환
- 자기계발서 추천
- 강점 5가지
- 30대 필독
- 몰입 책 후기
- 강자의 언어
- 온라인 파트타임 MBA
- 책 추천
- 내 장점 찾기
- 청소년 추천 도서
- 플로우 방법
- 몰입하는 방법
- 자산 책 추천
- 받아쓰기 설정
- 자신에게 할 질문
- 내 강점
- 글로벌 MBA 비용
- 블랙쉽
- 목적 찾는 법
- 30대 필독서
- 장점 5가지
- 30살 추천 도서
- 맥 받아쓰기
- 20살 추천 도서
- 글로벌 MBA
- MBA 비용
- mac 받아쓰기 설정
Archives
- Today
- Total
Let's enjoy our life
[R 패키지] User library vs System library 차이점 본문
By default, R use a system library where base packages are installed and a user library where packages are installed.
It is all defined in .libPaths() which is used by default by lib arg in install.packages(see help file) The first element of .libPaths() is used as default path for installing package. All paths are used to look for a package when you load them with library() with first path priority.
On my system, which is windows too, I have the same as you :
- system library in the folder where R is installed
- a user library in the Documents folder of my user.
you can see libPath help page here (or type ?.libPaths() in console) for how to tweek the default behaviour with environment variable.
'Study' 카테고리의 다른 글
인공지능과 수학과의 관계 (0) | 2021.07.01 |
---|---|
엑셀 Vlookup 함수 가장 쉬운 이해 (0) | 2021.06.28 |
[데이터 분석 기초] 분포의 종류 - 1분 개념 정리 (0) | 2021.01.13 |
모수의 종류 (Types of Parameters) [빅 데이터 분석 기초] (0) | 2020.12.29 |
모수 (Parameter) 란? [빅 데이터 분석 기초] (0) | 2020.12.29 |
Comments