Dear developers,
I have a problem with Saturating Forecasts. ValueError: Expected column 'floor'.
Latest version prophet installed. I do not know why. 小ode in image
Sorry for my English)
Thanks.
I think the problem here is that you are adding the floor to future, but then are aftewards re-creating future, with future = m.make_fjuture_dataframe(periods=11,freq='M'). Make sure you add floor to future after that. Does that do it?
Most helpful comment
I think the problem here is that you are adding the floor to
future, but then are aftewards re-creatingfuture, withfuture = m.make_fjuture_dataframe(periods=11,freq='M'). Make sure you add floor tofutureafter that. Does that do it?