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 |
Tags
- CSS사용법
- Program type already present
- java error
- R프로그래밍
- Android Apk 이름
- MySQL
- 안드로이드
- error
- Firebase
- Java
- Eclipse
- android error
- DataTable
- apache gzip
- html
- css
- FLUTTER
- release unsigned
- Android Apk
- android fragment
- jQuery
- Kotlin
- Android
- release Apk
- spring
- Exception
- tomcat
- fragment
- JavaScript
- Android Apk 이름 변경
Archives
- Today
- Total
selfstarter
R 추가 패키지 설치 본문
R 추가 패키지 설치
- 그래픽 툴이 필요하면 ggplot2 설치
- 텍스트 마이닝 패키지가 필요하면 NLP, tm, wordcloud 설치
- 추가 패키지 설치는 install.packages() 함수 사용
- library()함수는 라이브러리 설정으로, 해당 패키지를 사용할 때마다 선언해야함
- 패키지 이름을 모를 때 Google에서 xxx in r 로 검색하면 찾을 수 있다
install.packages("ggplot2")
library(ggplot2)
help(ggplot2)
install.packages("scatterplot3d")
library(scatterplot3d)
install.packages("NLP")
z<-seq(-10, 1, 0.01)
x<-cos(z)
y<-sin(z)
scatterplot3d(x, y, z, highlight.3d = TRUE, col.axis="blue",
col.grid="lightblue", main="scatterplot3d-1", pch=20)
'ML' 카테고리의 다른 글
Python List,Tuple,Dictionary,String (0) | 2019.09.17 |
---|---|
객체이름 정의(벡터,행렬) (0) | 2019.08.19 |
R 벡터, 행렬 생성 함수 (0) | 2019.08.17 |
R프로그램 기본 함수 (0) | 2019.08.15 |
python으로 naver 이메일 발송하기 (0) | 2019.08.08 |
Comments