Python statmodels lib弃用警告

时间:2018-02-05 14:55:35

标签: python python-3.x pandas statistics time-series

我正在使用Dickey-Fuller方法进行一些统计测试。

进行导入后:

from statsmodels.tsa.stattools import adfuller

我收到此FutureWarning

  

/env/lib/python3.5/site-packages/statsmodels/compat/pandas.py:56:   FutureWarning:不推荐使用pandas.core.datetools模块   在将来的版本中删除。请使用pandas.tseries模块   代替。来自pandas.core import datetools

问题是我无法在弃用警告中提到的adfuller()中找到pandas.tseries的实施。

Statsmodels版本为statsmodels==0.8.0

任何线索如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

根据this thread,这已在statsmodels==0.9中修复,因此如果可能,您应该升级。如果您因任何原因there are ways to suppress warnings无法升级,那么至少您不必一直看到它们。