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 |
Tags
- 코딩
- #크롤링 #웹문서
- #위도#경도#비정형데이터#크롤링
- 셀레니움
- #비정형 데이터 #네이버 #지도 #크롤링
- 위도경도
- 구글 지오코드
- 웹매크로 #세잔느
- 파이썬
- 카카오APi
- #비정형#카카오api#api#크롤링
- #K-means #Clustering
- 웹크롤링
- 숫자빼고 중복되는 코드동작법
- 파이썬 셀레니움
Archives
- Today
- Total
지방이의 Data Science Lab
[R] 코드 동작시간 잴때 tictoc사용 본문
tictoc이라는 패키지를 이용하면 된다.
1
2
3
4
5
6
7
8
|
devtools::install_github("jabiru/tictoc")
library(tic)
tic("LR(f) Modelling")
mod_fit = train(target ~ ., data=data, method="glm", family="binomial")
pred_target = predict(mod_fit, newdata=test1,type='prob')
toc()
|
'Data Analysis > 깨R지식' 카테고리의 다른 글
[R] 다른 길이 벡터인 경우, median 구하는법 (0) | 2020.04.23 |
---|---|
[R] plot: 두 라인 사이 색칠 법 (0) | 2020.04.22 |
[R] 5-fold CV 코드 직접 생성 (숫자빼고 반복되는 코드일 경우, 깨알 팁) (0) | 2020.01.05 |
[R] geom_line (geom_path: Each group consists of only one observation. ) (0) | 2020.01.02 |
[R] 조건에 맞는 특정 데이터 추출 (0) | 2019.12.30 |
Comments