mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-15 20:50:48 +00:00
* Resolve conflict * Change comments and add error column to output DataFrame * Change file structure * Update * Modified diagnostics * Update diagnostics.py following the advice on Github * Add tests and documentation * Change copy method into Prophet class and reflect comments
131 lines
4.8 KiB
Python
131 lines
4.8 KiB
Python
# Copyright (c) 2017-present, Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
import numpy as np
|
|
import pandas as pd
|
|
from functools import reduce
|
|
|
|
|
|
def _cutoffs(df, horizon, k, period):
|
|
"""Generate cutoff dates
|
|
|
|
Parameters
|
|
----------
|
|
df: pd.DataFrame with historical data
|
|
horizon: pd.Timedelta.
|
|
Forecast horizon
|
|
k: Int number.
|
|
The number of forecasts point.
|
|
period: pd.Timedelta.
|
|
Simulated Forecast will be done at every this period.
|
|
|
|
Returns
|
|
-------
|
|
list of pd.Timestamp
|
|
"""
|
|
# Last cutoff is 'latest date in data - horizon' date
|
|
cutoff = df['ds'].max() - horizon
|
|
result = [cutoff]
|
|
|
|
for i in range(1, k):
|
|
cutoff -= period
|
|
# If data does not exist in data range (cutoff, cutoff + horizon]
|
|
if not (((df['ds'] > cutoff) & (df['ds'] <= cutoff + horizon)).any()):
|
|
# Next cutoff point is 'closest date before cutoff in data - horizon'
|
|
closest_date = df[df['ds'] <= cutoff].max()['ds']
|
|
cutoff = closest_date - horizon
|
|
if cutoff < df['ds'].min():
|
|
logger.warning('Not enough data for requested number of cutoffs! Using {}.'.format(k))
|
|
break
|
|
result.append(cutoff)
|
|
|
|
# Sort lines in ascending order
|
|
return reversed(result)
|
|
|
|
|
|
def simulated_historical_forecasts(model, horizon, k, period=None):
|
|
"""Simulated Historical Forecasts.
|
|
If you would like to know it in detail, read the original paper
|
|
https://facebookincubator.github.io/prophet/static/prophet_paper_20170113.pdf
|
|
|
|
Parameters
|
|
----------
|
|
model: Prophet class object.
|
|
Fitted Prophet model
|
|
horizon: string which has pd.Timedelta compatible style.
|
|
Forecast horizon ('5 days', '3 hours', '10 seconds' etc)
|
|
k: Int number.
|
|
The number of forecasts point.
|
|
period: string which has pd.Timedelta compatible style or None, default None.
|
|
Simulated Forecast will be done at every this period.
|
|
0.5 * horizon is used when it is None.
|
|
|
|
Returns
|
|
-------
|
|
A pd.DataFrame with the forecast, actual value and cutoff.
|
|
"""
|
|
df = model.history.copy().reset_index(drop=True)
|
|
horizon = pd.Timedelta(horizon)
|
|
period = 0.5 * horizon if period is None else pd.Timedelta(period)
|
|
cutoffs = _cutoffs(df, horizon, k, period)
|
|
predicts = []
|
|
for cutoff in cutoffs:
|
|
# Generate new object with copying fitting options
|
|
m = model.copy(cutoff)
|
|
# Train model
|
|
m.fit(df[df['ds'] <= cutoff])
|
|
# Calculate yhat
|
|
index_predicted = (df['ds'] > cutoff) & (df['ds'] <= cutoff + horizon)
|
|
columns = ['ds'] + (['cap'] if m.growth == 'logistic' else [])
|
|
yhat = m.predict(df[index_predicted][columns])
|
|
# Merge yhat(predicts), y(df, original data) and cutoff
|
|
predicts.append(pd.concat([
|
|
yhat[['ds', 'yhat', 'yhat_lower', 'yhat_upper']],
|
|
df[index_predicted][['y']].reset_index(drop=True),
|
|
pd.DataFrame({'cutoff': [cutoff] * len(yhat)})
|
|
], axis=1))
|
|
|
|
# Combine all predicted pd.DataFrame into one pd.DataFrame
|
|
return reduce(lambda x, y: x.append(y), predicts).reset_index(drop=True)
|
|
|
|
|
|
def cross_validation(model, horizon, period, initial=None):
|
|
"""Cross-Validation for time-series.
|
|
This function is the same with Time series cross-validation described in https://robjhyndman.com/hyndsight/tscv/
|
|
when the value of period is equal to the time interval of data.
|
|
|
|
Parameters
|
|
----------
|
|
model: Prophet class object. Fitted Prophet model
|
|
horizon: string which has pd.Timedelta compatible style.
|
|
Forecast horizon ('5 days', '3 hours', '10 seconds' etc)
|
|
period: string which has pd.Timedelta compatible style.
|
|
Simulated Forecast will be done at every this period.
|
|
initial: string which has pd.Timedelta compatible style or None, default None.
|
|
First training period.
|
|
3 * horizon is used when it is None.
|
|
|
|
Returns
|
|
-------
|
|
A pd.DataFrame with the forecast, actual value and cutoff.
|
|
"""
|
|
te = model.history['ds'].max()
|
|
ts = model.history['ds'].min()
|
|
horizon = pd.Timedelta(horizon)
|
|
period = pd.Timedelta(period)
|
|
initial = 3 * horizon if initial is None else pd.Timedelta(initial)
|
|
k = int(np.floor(((te - horizon) - (ts + initial)) / period))
|
|
return simulated_historical_forecasts(model, horizon, k, period)
|