필요한 기본 코드
import pandas as pd
import pandas_datareader as web
import numpy as np
import matplotlib.pyplot as plt
from fbprophet import Prophet
from datetime import datetime
%matplotlib inline
pinkwink_web = pd.read_csv("../data/05_PinkWink_Web_Traffic.csv", encoding ="utf-8", thousands=",", names =["date","hit"], index_col=0)
pinkwink_web = pinkwink_web[pinkwink_web["hit"].notnull()]
pinkwink_web.head()
다음과 같은 head를 볼 수 있다.
pinkwink_web["hit"].plot(figsize=(12, 4), grid=True);
코드 뒤에 ; 표시가 있으면 정보를 보다 간략하게 표시해준다.
time= np.arange(0,len(pinkwink_web))
traffic = pinkwink_web["hit"].values
fx = np.linspace(0, time[-1], 1000)
def error(f,x,y):
return np.sqrt(np.mean((f(x)- y )**2))
plt.figure(figsize =(12,4))
plt.scatter(time, traffic, s =10)
plt.plot(fx, f1(fx), lw=4, label ='f1')
plt.plot(fx, f2(fx), lw=4, label ='f2')
plt.plot(fx, f3(fx), lw=4, label ='f3')
plt.plot(fx, f15(fx), lw=4, label ='f15')
plt.grid(True, linestyle = "-", color ="0.75")
plt.legend(loc =2)
plt.show()
필요한 기본 코드
from bs4 import BeautifulSoup
from urllib.request import urlopen, Request
url = "https://finance.yahoo.com/quote/035420.KS/history?p=035420.KS&guccounter=2"
req = Request(url, headers ={"User-Agent": "Chrome"})
page = urlopen(req).read()
soup = BeautifulSoup(page, "html.parser")
soup
table = soup.find("table")
df_raw = pd.read_html(str(table))[0] # str 형태로 가져와야함
df_raw.head()
df_tmp = pd.DataFrame({"ds":df_raw["Date"], "y": df_raw["Close*"]})
df_target = df_tmp[:-1]
df_target.head()
df = df_target.copy()
df["ds"] = pd.to_datetime(df_target["ds"], format="%b %d, %Y")
df.head()
plt.figure(figsize=(12,6))
plt.plot(df["ds"], df["y"], label="real")
plt.grid(True)
plt.show()
위 함수를 통해 다양한 상황의 그래프를 표현할 수 있다.