일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딥러닝
- 리눅스 저장 용량 확인
- ORACLE SQL NVL
- python image list
- 파이썬 이미지 라벨 저장
- 파이썬 이미지 리스트 변환
- python image load
- 회수모형
- 파이썬 테마
- jupyter notebook 테마 변경
- Python Numpy
- 파이썬 이미지 불러오기
- SQL NULL값 처리
- linux 폴더 용량 확인
- 행동평점
- ORACLE NULL값 처리
- ORACLE 상위 행 추출
- 신용평가 부정사용 평점
- Cudnn 버전 확인
- 신청평점
- 딥러닝 제대로 시작하기
- 주식 데이터 수집
- 신용평가 Fraud
- SQL NVL
- linux 폴더 크기 확인
- CSS Fraud Score
- python pandas
- ORACLE 상위 N개 추출
- 주피터노트북 테마 변경
- jupyter notebook PDF
- Today
- Total
목록R (13)
koos808
패키지 확인(check)하고 없으면 설치하기 requiredPackages = c('lubridate','data.table','dplyr','zoo','ranger','reshape2', 'jsonlite','cumstats','stringi') for(p in requiredPackages){ if(!require(p,character.only = TRUE)) install.packages(p) library(p,character.only = TRUE) }
현재 열고 있는 Scripts path 가져오기 dirname(rstudioapi::getActiveDocumentContext()$path) library(rstudioapi) ; dirname(getActiveDocumentContext()$path)
write.csv/fwrite 하기 전 폴더 없으면 생성하라는 코드 : 폴더 생성 code if(!dir.exists(file.path("my_path/folder"))) { dir.create(file.path("my_path/folder"),recursive = T, mode = "0777") }
리스트 병합 : merge all_model_merged = Reduce(function(...) merge(..., all.x = TRUE, by = c("MODEL","date")), SFA_list)
문자열 중 원하는 문자로 시작하는 데이터만 추출 filename[str_detect(filename,'^train')] => filename 벡터에서 train으로 시작하는 문자만 뽑겠다.
컴퓨터/서버에 설치되어 있는 R Packages Version 간편하게 확인하기 session
한줄이면 끝나는 여러 패키지 불러오기(library many packages) step1 - to_install
문자열 대소문자, 일괄 바꾸기 x