docs/source/release/old_changes.rst
:orphan:
.. _old_changes:
Main Changes and Additions
Compatibility and Deprecation
Bug Fixes
Enhancements and Additions
formula integration based on patsy (new dependency)
Time series analysis
expanded margins for discrete models
OLS outlier test
empirical likelihood - Google Summer of Code 2012 project
expanded probability plots
improved graphics
new datasets
new and improved tools
The only change compared to 0.4.2 is for compatibility with python 3.2.3 (changed behavior of 2to3)
This is a bug-fix release, that affects mainly Big-Endian machines.
Bug Fixes
This is a backwards compatible (according to our test suite) release with bug fixes and code cleanup.
Bug Fixes
Other Changes
Main Changes and Additions
Changes that break backwards compatibility
Deprecated scikits namespace. The recommended import is now::
import statsmodels.api as sm
model.predict methods signature is now (params, exog, ...) where before it assumed that the model had been fit and omitted the params argument.
For consistency with other multi-equation models, the parameters of MNLogit are now transposed.
tools.tools.ECDF -> distributions.ECDF
tools.tools.monotone_fn_inverter -> distributions.monotone_fn_inverter
tools.tools.StepFunction -> distributions.StepFunction
Changes that break backwards compatibility
Added api.py for importing. So the new convention for importing is::
import statsmodels.api as sm
Importing from modules directly now avoids unnecessary imports and increases the import speed if a library or user only needs specific functions.
Main changes and additions
Numerous bugfixes.
Time Series Analysis model (tsa)
Improved maximum likelihood framework uses all available scipy.optimize solvers
Refactor of the datasets sub-package.
Added more datasets for examples.
Removed RPy dependency for running the test suite.
Refactored the test suite.
Refactored codebase/directory structure.
Support for offset and exposure in GLM.
Removed data_weights argument to GLM.fit for Binomial models.
New statistical tests, especially diagnostic and specification tests
Multiple test correction
General Method of Moment framework in sandbox
Improved documentation
and other additions
Main changes
New
add four new datasets
add four new Maximum Likelihood Estimators for models with a discrete dependent variables with examples
Sandbox