-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEPR: pandas.stats.var, pandas.stats.plm, pandas.stats.ols, pandas.stats.fama_macbeth #11898
Conversation
cc @jseabold looks reasonable? |
looks fine to me (without checking details) Hopefully the deprecation warnings induce some users to help, at least with missing API and testing. I don't know if there is anything directly to do about expanding and rolling OLS or whether it's handled by just a call to the general pandas methods. (I haven't looked at that in years.) |
thanks @josef-pkt yeah meant to deprecate these a while ago. |
+1 ! |
DEPR: pandas.stats.var, pandas.stats.plm, pandas.stats.ols, pandas.stats.fama_macbeth
remove pd.ols, pd.fama_macbeth from top-level namespace xref pandas-dev#11898
remove pd.ols, pd.fama_macbeth from top-level namespace xref pandas-dev#11898
remove pd.ols, pd.fama_macbeth from top-level namespace xref #11898 closes wesm/pandas2#26 previously deprecated in 0.18.0 Author: Jeff Reback <jeff@reback.net> Closes #15353 from jreback/stats and squashes the following commits: 9563740 [Jeff Reback] DEPR: remove statsmodels as a dependency
remove pd.ols, pd.fama_macbeth from top-level namespace xref pandas-dev#11898 closes wesm/pandas2#26 previously deprecated in 0.18.0 Author: Jeff Reback <jeff@reback.net> Closes pandas-dev#15353 from jreback/stats and squashes the following commits: 9563740 [Jeff Reback] DEPR: remove statsmodels as a dependency
closes #6077
this cleans ups the remainder of the
pandas.stats
moduleswe are directing:
OLS
->http://statsmodels.sourceforge.net/stable/regression.html
PanelOLS/MovingOLS/PooledOLS
tohttp://statsmodels.sourceforge.net/stable/mixed_linear.html
VAR
tohttp://statsmodels.sourceforge.net/stable/vector_ar.html#var
fama_macbeth
tohttp://statsmodels.sourceforge.net/stable/index.html
(as not implemented in statsmodell, but good place to start)