shane-kercheval / oo-learning

Python machine learning library based on Object Oriented design principles; the goal is to allow users to quickly explore data and search for top machine learning algorithm candidates for a given dataset
MIT License
1 stars 0 forks source link

importing `statsmodels` results in warning #26

Closed shane-kercheval closed 6 years ago

shane-kercheval commented 6 years ago

In, LinearRegression.py, this import:

from statsmodels import api as sm

generates:

/Applications/PyCharm CE.app/Contents/helpers/pydev/_pydev_bundle/pydev_import_hook.py:20: FutureWarning: The pandas.core.datetools module is deprecated and will be removed in a future version. Please use the pandas.tseries module instead.
  module = self._system_import(name, *args, **kwargs)
shane-kercheval commented 6 years ago

Apparently there is no issue, it is just a matter of suppressing the warning: https://github.com/statsmodels/statsmodels/issues/3814