r(11)
-
R 패키지 설치 여부 체크 후, 필요시 설치 후 라이브러리 불러들이기
packages 있는지 없는지 체크 packages 체크 후에 설치하기 packages 설치하고 라이브러리 불러들이기 list.of.packages
2020.06.13 -
[R] magick package 설치 에러 (ubuntu)
In install.packages("magick") : installation of package ‘magick’ had non-zero exit status #ERROR: configuration failed for package ‘magick’ sudo apt-get install libmagick++-dev R install.packages("magick")
2020.05.26 -
[R][Windows 10] R 4.0에서 Tensorflow 사용해보기 간단 예제 (conda)
광고 한 번씩 눌러주세요! 블로그 운영에 큰 힘이 됩니다 :) 2020/04/29 - [꿀팁 분석 환경 설정/Linux 관련 팁] - ubuntu18.04 에 R 4.0 설치 및 Rstudio Server 설치하기 2020/05/04 - [분석 R/구현] - [R][Windows 10] R 4.0 에서 reticulate를 사용하여 conda에서 Tensorflow 설치해보기 2020/05/04 - [분석 R/구현] - [R][Windows 10] R 4.0에서 Tensorflow 사용해보기 간단 예제 (conda) 2017년도에 올라온 글을 따라 해 봤다. 요약하자면 약간의 오류 빼고는 거의 똑같이 작동하는 것을 알 수 있었다. http://freesearch.pe.kr/archives/4546 필자는..
2020.05.04 -
[ R ] RandomForest tree visualization 2019.10.29
-
[R] ggplot Geom_Bar Tips
필요 패키지 : tidyverse , RColorBrewer 필요 데이터 : NHIS.RData Library Load library(tidyverse) library(RColorBrewer) #library(ggplot2) #library(dplyr) NHIS Data Load load("./../Data/NHIS.RData") str(NHIS) ## 'data.frame': 2047953 obs. of 10 variables: ## $ IDV_ID : int 262352 463733 605007 605007 605007 616529 571811 964981 29823 128251 ... ## $ SEX : Factor w/ 2 levels "1","2": 2 1 2 2 2 2 2 2 2 2 ... #..
2019.10.20 -
[R] ggwordcloud example
참고자료 LIBRARY LOAD tm 불용어 처리 ggwordcloud tutorial WordCloud Library Load Packages % head() ## # A tibble: 6 x 2 ## noun n ## ## 1 너 65 ## 2 나 37 ## 3 말 26 ## 4 사랑 25 ## 5 것 23 ## 6 오늘 19 3차 Data Handling 아직 처리되지 않은 불용어 추가 처리 ## 2차 stopwords notuse = text$noun %in% c("너","내","나","것" , "수","한","날" , "랄라라라랄라라라") text = text[!notuse,] text %>% head() ## # A tibble: 6 x 2 ## noun n ## ## 1 말 26 ## 2 사..
2019.09.29 -
R 패키지 설치시, 중복 설치 방지
패키지를 설치하다보면, 중복되게 머가 설치된지 몰라서 중복되게 설치하는 경우가 있다. 오늘 우연히 좋은 코드를 알게되서 공유하려고 한다. required_CRAN
2019.05.12 -
Kaggle BlackFriday 데이터를 활용한 EDA
LeeSungRyeong 관련 파일 : BlackFriday.csv 필요 패키지 :tidyverse gridExtra Tips 그림 크기 방향 조절 하는 방법 ```{r , fig.align=‘center’ , fig.width= 12 , fig.height= 9} library warning message 안 나오게 하는 방법 ```{r, warning=FALSE , message=FALSE } Library Loadlibrary(tidyverse) library(gridExtra) 0. Data Load BlackFriday Click And Download The Data! 사용할 데이터 : BlackFriday.csvdt % mutate( buy_n = n()) %>% filter( buy_n >..
2019.03.16 -
[ R ] AUCROC and KS (H2O)
html이나 rmd가 필요하다면 댓글에 글 남겨주세요. Library Load library(dplyr) library(tidyverse) library(h2o) library(caret) library(riskr) How to install riskr Click Url library(devtools) install_local("C:/Users/lee/Desktop/riskr-master.zip") KS PLOT Func ks_plot % filter( left == 0 ) left1 % dplyr::select( left , p1 ) %>% filter( left == 1 ) cdf1
2019.03.16 -
Kaggle 올림픽 데이터를 활용한 EDA 2번째
Test5 html이나 rmd가 필요하다면 댓글에 글 남겨주세요. 관련 파일 : athlete_events.csv, noc_regions.csv 필요 패키지 :tidyverse Library Load library(tidyverse) 0. Data Load 및 이전 시험 진행과정 Kaggle 120 years of Olympic history: athletes and results에서 압축 파일을 다운 받은 후에 압축을 해제하시오 Kaggle site에 login 후 download 가능. URL : https://www.kaggle.com/heesoo37/120-years-of-olympic-history-athletes-and-results 사용할 데이터 : athlete_events.csv, noc..
2019.03.16 -
Kaggle 올림픽 데이터를 활용한 EDA 1번째
2018-11-05 TEST2-Solution html이나 rmd가 필요하다면 댓글에 글 남겨주세요. 관련 파일 : athlete_events.csv , noc_regions.csv 필요 패키지 :tidyverse 0. Package library(tidyverse) Problem 1. 데이터 불러오기 Kaggle 120 years of Olympic history: athletes and results에서 압축 파일을 다운 받은 후에 압축을 해제하시오 Kaggle site에 login 후 download 가능. URL : https://www.kaggle.com/heesoo37/120-years-of-olympic-history-athletes-and-results 사용할 데이터 : athlete_ev..
2019.03.16