일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hackerrank
- sarima
- lstm
- Crawling
- 파트5
- 변동성돌파전략
- 주식
- 빅데이터분석기사
- Programmers
- 파이썬 주식
- TimeSeries
- Quant
- 프로그래머스
- randomforest
- SQL
- PolynomialFeatures
- backtest
- 볼린저밴드
- docker
- 토익스피킹
- 실기
- 코딩테스트
- 비트코인
- 백테스트
- 데이터분석전문가
- Python
- 파이썬
- 데이터분석
- GridSearchCV
- ADP
- Today
- Total
목록전체 글 (125)
데이터 공부를 기록하는 공간

https://www.youtube.com/watch?v=pAQcGnhQ_70&t=7s&ab_channel=%EC%8B%9C%EA%B3%84%ED%86%A0%EB%81%BC%EC%A0%9C%EB%8B%88%EC%8C%A4 Q. When and Where the seminar will take place ? A. Sure, the seminar will take place on June 20th at Hilton Hotel. Q. The registration and coffee session starts at 8:30 am, is that true? A. No, Actually registration and coffee session will start at 9:00 am. Q. Marketing is ..

https://www.youtube.com/watch?v=pAQcGnhQ_70&t=7s&ab_channel=%EC%8B%9C%EA%B3%84%ED%86%A0%EB%81%BC%EC%A0%9C%EB%8B%88%EC%8C%A4 This is a picture taken at construnction site. The first thing I can see from this picture is 4 men wearing safety helmets. On the right side of the picture, I can see two men holding something and moving it together. In the middle of the picture, I can see a men standing a..

finding url 417 = 410 + 7 # kema url = 'http://www.k-ets.or.kr/bbs/board.php?bo_table=s6_1' res = requests.get(url) soup = BeautifulSoup(res.text, 'html.parser') # find 410 for i in soup.find_all('div', class_='div_td col_num'): temp = i.get_text().strip() if temp.isdigit(): point = temp print(point) break url2 = 'http://www.k-ets.or.kr/bbs/board.php?bo_table=s6_1&wr_id={}'.format(int(point)+7) ..

■ Library import pandas as pd import matplotlib.pyplot as plt import datetime import requests from bs4 import BeautifulSoup sns.set_context("talk") sns.set_style("white") import platform from matplotlib import font_manager, rc path="c:\Windows\Fonts\malgun.ttf" if platform.system() == 'Darwin': rc('font',family='AppleGothic') elif platform.system() == 'Windows': font_name=font_manager.FontProper..