mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-07 17:15:37 +00:00
change extra_regressors to OrderedDict (#688)
This commit is contained in:
parent
55ca33891e
commit
e63f8cdfbd
1 changed files with 3 additions and 2 deletions
|
|
@ -10,12 +10,13 @@ from __future__ import division
|
|||
from __future__ import print_function
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from collections import defaultdict
|
||||
from collections import defaultdict, OrderedDict
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
|
||||
|
||||
from fbprophet.diagnostics import prophet_copy
|
||||
from fbprophet.models import prophet_stan_model
|
||||
from fbprophet.make_holidays import get_holiday_names, make_holidays_df
|
||||
|
|
@ -158,7 +159,7 @@ class Prophet(object):
|
|||
self.t_scale = None
|
||||
self.changepoints_t = None
|
||||
self.seasonalities = {}
|
||||
self.extra_regressors = {}
|
||||
self.extra_regressors = OrderedDict({})
|
||||
self.stan_fit = None
|
||||
self.params = {}
|
||||
self.history = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue