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

import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns plt.style.use('seaborn-whitegrid') from datetime import datetime import statsmodels.api as sm from statsmodels.graphics.tsaplots import plot_acf, plot_pacf from statsmodels.tsa.arima_model import ARIMA from statsmodels.tsa.statespace.sarimax import SARIMAX import itertools path= './smp/smp.xlsx' df = pd...

1. library import import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns plt.style.use('seaborn-whitegrid') from datetime import datetime import statsmodels.api as sm from statsmodels.graphics.tsaplots import plot_acf, plot_pacf from statsmodels.tsa.arima_model import ARIMA from statsmodels.tsa.statespace.sarimax import SARIMAX from matplotlib.pyplot import ..