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