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 | 31 |
Tags
- 30대 필독
- 내 장점 찾기
- 오디오 텍스트 변환
- MBA 비용
- 자신에게 할 질문
- 블랙쉽
- 온라인 파트타임 MBA
- 자산늘리는법
- 글로벌 MBA 비용
- 받아쓰기 설정
- 책 추천
- 장점 5가지
- 목적 찾는 법
- 자산 책 추천
- 강점 5가지
- 돈의 속성이란
- mac 받아쓰기 설정
- 20살 추천 도서
- 몰입하는 방법
- 30살 추천 도서
- 내 강점
- 자기계발서 추천
- 글로벌 MBA
- 30대 필독서
- 강자의 언어
- 청소년 추천 도서
- 맥 받아쓰기
- 몰입 책 후기
- 플로우 방법
- 몰입 줄거리
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