jltapiamx
Results
1
comments of
jltapiamx
same issue import pandas as pd from prophet import Prophet from matplotlib import pyplot class FrcstSucs(object): def __init__(self): pass def frcst_efe_suc(self, dfdata): dfdata.plot() model = Prophet() model.fit(dfdata) dftestdates = pd.DataFrame({'ds':...