증권데이터분석(2)
-
1-2. 웹 스크레이핑을 통한 일별 시세 분석하기
이번 장에서는 1-1에서 만든 함수로 추출한 데이터를 matplotlib으로 분석하고, 캔들차트 그리는 법을 알아보겠다. sise_url = 'https://finance.naver.com/item/sise_day.nhn?code=293490' total_data = read_total_data(sise_url, last_page) 상장한지 얼마안된 카카오게임즈 주식을 분석해보자. total_data = total_data.dropna() total_data = total_data[::-1] 혹시 있을지 모르는 null 값을 지우고, 최근순으로 정렬되어있는 인덱스를 역순으로 정렬하여 오래된 순으로 정렬하였다. spl_data = total_data.iloc[0:30] plt.title("Kakao Gam..
2021.05.29 -
1-1. 웹 스크레이핑을 통한 일별 시세 읽어오기
What is web scraping Web scraping is the process of using bots to extract content and data from a website. Unlike screen scraping, which only copies pixels displayed onscreen, web scraping extracts underlying HTML code and, with it, data stored in a database. The scraper can then replicate entire website content elsewhere. Web scraping is used in a variety of digital businesses that rely on data..
2021.05.29