A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/statsmodels/statsmodels/commit/8e3c103dad6d1b501a848b620d94f5e82db21e87 below:

Merge pull request #8839 from bashtage/sphinx-immaterial · statsmodels/statsmodels@8e3c103 · GitHub

@@ -23,9 +23,9 @@ are mentioned in the docstrings.

23 23 24 24

Stats

25 25

-----

26 -

**Issues Closed**: 233

26 +

**Issues Closed**: 248

27 27 28 -

**Pull Requests Merged**: 313

28 +

**Pull Requests Merged**: 335

29 29 30 30 31 31

The Highlights

@@ -101,7 +101,7 @@ are not unique as in discrete distributions.

101 101

Multiseason STL decomposition (MSTL)

102 102

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

103 103

The existing :class:`~statsmodels.tsa.seasonal.STL` class has been extended to handle multiple seasonal

104 -

components in :class:`~statsmodels.tsa.seasonal.MSTL`

104 +

components in :class:`~statsmodels.tsa.seasonal.MSTL`. See :pr:`8160`.

105 105 106 106 107 107

Other Notable Enhancments

@@ -185,6 +185,7 @@ Submodules

185 185

- Fixes, discrete perfect prediction check, Multinomial fit (:pr:`8669`)

186 186

- MNLogit if endog is series with no name (:pr:`8674`)

187 187

- Get_distribution, return 1-d instead of column frozen distribution (:pr:`8780`)

188 +

- Numpy compat, indexed assignment shape in NegativeBinomial (:pr:`8822`)

188 189 189 190 190 191

@@ -218,6 +219,7 @@ Submodules

218 219

- Easy PR! Fix minor typos (:pr:`8316`)

219 220

- Added detailed ValueError to prepare_trend_spec() (:pr:`8365`)

220 221

- Fix typo in documentation (:pr:`8386`)

222 +

- Improvements to linear regression diagnostics example (:pr:`8402`)

221 223

- Use pandas loc in contrasts notebook (:pr:`8433`)

222 224

- Fix warnings (:pr:`8483`)

223 225

- Add release note for 0.13.3 (:pr:`8485`)

@@ -237,8 +239,12 @@ Submodules

237 239

- Various doc fixes and improvements (:pr:`8648`)

238 240

- Fix typo in examples/notebooks/mixed_lm_example.ipynb (:pr:`8684`)

239 241

- Fix developer page linting requirements (:pr:`8744`)

242 +

- Add a better description of the plot generated by plot_fit (:pr:`8760`)

240 243

- Add old release notes and draft of 0.14 (:pr:`8798`)

241 244

- Merge existing highlights (:pr:`8799`)

245 +

- Update PRs in release note (:pr:`8805`)

246 +

- Improve release notes highlights (:pr:`8806`)

247 +

- Fix more deprecations and restore doc build (:pr:`8826`)

242 248 243 249 244 250

@@ -386,14 +392,18 @@ Submodules

386 392

- Update doc builder to Python 3.9 (:pr:`7997`)

387 393

- Resore doct build to 3.8 (:pr:`7999`)

388 394

- Switch to single threaded doc build (:pr:`8012`)

389 - 395 +

- Improve specificity of warning check (:pr:`8797`)

396 +

- Ensure statsmodels test suite passes with pandas CoW (:pr:`8816`)

397 +

- Remove deprecated np.alltrue and np.product (:pr:`8823`)

398 +

- Remove casts from array to scalar (:pr:`8825`)

399 +

- Switch DeprecationWarn to FutureWarn (:pr:`8834`)

390 400 391 401

``nonparametric``

392 402

~~~~~~~~~~~~~~~~~

393 403

- Check dtype for xvals in lowess (:pr:`8047`)

394 404

- Correct description of `cut` parameter for `KDEUnivariate` (:pr:`8340`)

395 405

- Improve specificity of warning check (:pr:`8797`)

396 - 406 +

- Fix lowess Cython to handle read-only (:pr:`8820`)

397 407 398 408 399 409

``othermod``

@@ -512,6 +522,10 @@ Submodules

512 522

- X13.py option for location of temporary files (:pr:`8564`)

513 523

- Ref/ENH misc, smaller fixes or enhancements (:pr:`8567`)

514 524

- AR/MA creation with ArmaProcess.from_roots (:pr:`8742`)

525 +

- Statespace: issue FutureWarning for unknown keyword args (:pr:`8810`)

526 +

- Correct initial level, treand and seasonal (:pr:`8831`)

527 +

- Add sharex for seasonal decompose plots (:pr:`8835`)

528 + 515 529 516 530 517 531

``tsa.statespace``

@@ -530,6 +544,7 @@ Submodules

530 544

- SARIMAX variance starting parameter when the MA order is large relative to sample size (:pr:`8297`)

531 545

- Fix sim smoother nan, dims / add options (:pr:`8354`)

532 546

- Loop instead of if in SARIMAX transition init (:pr:`8743`)

547 +

- Statespace: issue FutureWarning for unknown keyword args (:pr:`8810`)

533 548 534 549 535 550

@@ -588,6 +603,7 @@ Thanks to all of the contributors for the 0.14.0 release (based on git log):

588 603

- Alex Blackwell

589 604

- Alex Thompson

590 605

- AmarAdilovic

606 +

- Amit Anchalia

591 607

- Anthony Lee

592 608

- Bill

593 609

- Chad Fulton

@@ -600,7 +616,7 @@ Thanks to all of the contributors for the 0.14.0 release (based on git log):

600 616

- Eva Maxfield Brown

601 617

- Evgeny Zhurko

602 618

- Ewout Ter Hoeven

603 -

- Geoffrey Oxberry

619 +

- Geoffrey M. Oxberry

604 620

- Greg Mcmahan

605 621

- Gregory Parkes

606 622

- Guilherme Silveira

@@ -619,6 +635,7 @@ Thanks to all of the contributors for the 0.14.0 release (based on git log):

619 635

- Kishan Manani

620 636

- Lindsay Stevens

621 637

- Malte Londschien

638 +

- Matt Spinelli

622 639

- Max Foxley-Marrable

623 640

- Michael Chirico

624 641

- Michał Górny

@@ -869,6 +886,7 @@ The following Pull Requests were merged since the last release:

869 886

- :pr:`8320`: MAINT: Remove pandas warning from pytest errors

870 887

- :pr:`8324`: ENH/DOC fixes in docs, missing in stats.api fpr rates

871 888

- :pr:`8333`: BUG/ENH: fix max in tost_proportions_2indep, vectorize tost

889 +

- :pr:`8335`: Update data.py

872 890

- :pr:`8339`: BUG: Fix auto lag selection in acorr_ljungbox #8338

873 891

- :pr:`8340`: DOC: Correct description of `cut` parameter for `KDEUnivariate`

874 892

- :pr:`8343`: BUG: Fix when exog is Series and its name have multiple chars

@@ -885,6 +903,7 @@ The following Pull Requests were merged since the last release:

885 903

- :pr:`8378`: BUG: Ensure x_columns is a list

886 904

- :pr:`8386`: Fix typo in documentation

887 905

- :pr:`8400`: docs/add-missing-return-value-from-aggregate-raters-to-doc

906 +

- :pr:`8402`: DOC: Improvements to linear regression diagnostics example

888 907

- :pr:`8411`: GitHub Workflows security hardening

889 908

- :pr:`8412`: DOC: add notebook for stats poisson rates

890 909

- :pr:`8414`: Corrected the docstring of normal_sample_size_one_tail()

@@ -976,7 +995,27 @@ The following Pull Requests were merged since the last release:

976 995

- :pr:`8742`: ENH/TST: AR/MA creation with ArmaProcess.from_roots

977 996

- :pr:`8743`: BUG: loop instead of if in SARIMAX transition init

978 997

- :pr:`8744`: DOC: fix developer page linting requirements

998 +

- :pr:`8760`: DOC: Add a better description of the plot generated by plot_fit

979 999

- :pr:`8777`: MAINT/TST unit test failures, compatibility changes

980 1000

- :pr:`8780`: REF: get_distribution, return 1-d instead of column frozen distribution

981 1001

- :pr:`8793`: BUG: Correct assignment in different versions of pandas

982 1002

- :pr:`8797`: MAINT: Improve specificity of warning check

1003 +

- :pr:`8798`: DOC: Add old release notes and draft of 0.14

1004 +

- :pr:`8799`: DOC: Merge existing highlights

1005 +

- :pr:`8801`: BUG: fix robust.norm.Hampel

1006 +

- :pr:`8805`: DOC: Update PRs in release note

1007 +

- :pr:`8806`: DOC: improve release notes highlights

1008 +

- :pr:`8810`: ENH/BUG: statespace: issue FutureWarning for unknown keyword args

1009 +

- :pr:`8816`: MAINT: Ensure statsmodels test suite passes with pandas CoW

1010 +

- :pr:`8819`: MAINT: Cap sphinx in the doc build

1011 +

- :pr:`8820`: MAINT: Fix lowess Cython to handle read-only

1012 +

- :pr:`8822`: MAINT: numpy compat, indexed assignment shape in NegativeBinomial

1013 +

- :pr:`8823`: Maint: remove deprecated np.alltrue and np.product

1014 +

- :pr:`8825`: MAINT: Remove casts from array to scalar

1015 +

- :pr:`8826`: MAINT/DOC: Fix more deprecations and restore doc build

1016 +

- :pr:`8828`: Theta method bug

1017 +

- :pr:`8829`: DOC: Correct docstring for diff

1018 +

- :pr:`8830`: MAINT: Monkey deprecated patsy function

1019 +

- :pr:`8831`: BUG: Correct initial level, treand and seasonal

1020 +

- :pr:`8834`: MAINT: Switch DeprecationWarn to FutureWarn

1021 +

- :pr:`8835`: ENH: Add sharex for seasonal decompose plots


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4