Prophet에서 놀아보기
Prophet이란?
성능을 발휘하기 쉬운 조건
대단한 곳
Prophet의 작동 방식
하기 4개의 중첩에 의해 예측.
설치
pip install fbprophet
튜토리얼
미식축구 선수 페이튼 매닝 씨 3
wget https://raw.githubusercontent.com/facebookincubator/prophet/master/examples/example_wp_peyton_manning.csv
import pandas as pd
import numpy as np
from fbprophet import Prophet
df = pd.read_csv('../examples/example_wp_peyton_manning.csv')
df['y'] = np.log(df['y'])
df.head()
학습
데이터를 바탕으로 학습합니다.
m = Prophet()
m.fit(df);
예측 데이터 준비
장래 365일분이나 내고 싶으면 아래와 같이 쓴다.
future = m.make_future_dataframe(periods=365)
future.tail()
예측 결과 표시
forecast = m.predict(future)
forecast[['ds', 'yhat', 'yhat_lower', 'yhat_upper']].tail()
미래 예측 추이
m.plot(forecast);
성분별 표시
m.plot_components(forecast);
다음 기사 「 Prophet에서 비트 코인의 가격 추이를 예측해보기 」입니다.
References
Taylor, Prophet: forecasting at scale , 2017. ↩
facebookincubator, prophet ↩
Peyton Manning ↩
Reference
이 문제에 관하여(Prophet에서 놀아보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/namakemono/items/04ed257f8b7c7964a341텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)