prophet
prophet copied to clipboard
pandas frame.appendis deprecated
fbprophet\forecaster.py:891: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
Looks like there is a pull request from nlhkh for this already. Should be merged in soon.
The maintainers disappeared. It has been 2 months and no response.
Could just be a busy time. I've looked at closed pull requests and sometimes it takes a few months to bring them in.
I think is due to the pandas append
method, that will be deprecated in the future.
So this method is basically to add in a given dataframe another dataframe. This can be done:
# With append
df.append(df_other)
# With concat
pd.concat([df, df_other])
And basically the one that will be supported in the future is the second one.
Please upgrade to 1.1.1, https://github.com/facebook/prophet/pull/2114 removes this deprecation warning.