You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure if statsmodels will deprecate the "old names" only or if it also deprecates the old_names argument. The reason why it does not raise a warning is
Only marginally related, but here is the nicer deprecation I mentioned today:
importxarrayasxrds=xr.Dataset({"x": [1, 2]})
# these two are inconsistentds.dimsds.x.dims# so this throws a warning because it's deprecatedds.dims["x"]
# check the implementationxr.core.utils.FrozenMappingWarningOnValuesAccess??
We use the
old_names
argument from statsmodels:mesmer/mesmer/stats/_auto_regression.py
Line 570 in 3a6a9e1
and in the tests
mesmer/tests/unit/test_auto_regression.py
Line 567 in 3a6a9e1
we should remove this and require statsmodels v0.13+ (see #369 how to do this)
statsmodels is the first that has the default of
old_names=False
. SeeI am not sure if statsmodels will deprecate the "old names" only or if it also deprecates the
old_names
argument. The reason why it does not raise a warning ishttps://github.com/statsmodels/statsmodels/blob/37bd2e421bad61bc54e8260b86a10a68d17892b3/statsmodels/tsa/ar_model.py#L251
(They should set
old_names=None
and do)
The text was updated successfully, but these errors were encountered: