Skip to main content

Instrumental Variable and Linear Panel models for Python

Project description

Build Status codecov

Linear (regression) models for Python. Extends statsmodels to include Panel regression and instrumental variable estimators:

  • Panel models:

    • Fixed effects (maximum two-way)

    • First difference regression

    • Between estimator for panel data

    • Pooled regression for panel data

    • Fama-MacBeth estimation of panel models

  • Instrumental Variable estimators

    • Two-stage Least Squares

    • Limited Information Maximum Likelihood

    • k-class Estimators

    • Generalized Method of Moments, also with continuously updating

  • Factor Asset Pricing Models:

    • 2- and 3-step estimation

    • Time-series estimation

    • GMM estimation

  • System Regression:

    • Seemingly Unrelated Regression (SUR/SURE)

Designed to work equally well with NumPy, Pandas or xarray data.

Panel models

Like statsmodels to include, supports patsy formulas for specifying models. For example, the classic Grunfeld regression can be specified

import numpy as np
from statsmodels.datasets import grunfeld
data = grunfeld.load_pandas().data
data.year = data.year.astype(np.int64)
# MultiIndex, entity - time
data = data.set_index(['firm','year'])
from linearmodels import PanelOLS
mod = PanelOLS(data.invest, data[['value','capital']], entity_effect=True)
res = mod.fit(cov_type='clustered', cluster_entity=True)

Models can also be specified using the formula interface.

from linearmodels import PanelOLS
mod = PanelOLS.from_formula('invest ~ value + capital + EntityEffect', data)
res = mod.fit(cov_type='clustered', cluster_entity=True)

The formula interface for PanelOLS supports the special values EntityEffects and TimeEffects which add entity (fixed) and time effects, respectively.

Instrumental Variable Models

IV regression models can be similarly specified.

import numpy as np
from linearmodels.iv import IV2SLS
from linearmodels.datasets import mroz
data = mroz.load()
mod = IV2SLS.from_formula('np.log(wage) ~ 1 + exper + exper ** 2 + [educ ~ motheduc + fatheduc]', data)

The expressions in the [ ] indicate endogenous regressors (before ~) and the instruments.

Installing

The latest release can be installed using pip

pip install linearmodels

The master branch can be installed by cloning the repo and running setup

git clone https://github.com/bashtage/linearmodels
cd linearmodels
python setup.py install

Documentation

Stable Documentation is built on every tagged version using doctr. Development Documentation is automatically built on every successful build of master.

Plan and status

Should eventually add some useful linear model estimators such as panel regression. Currently only the single variable IV estimators are polished.

  • Linear Instrumental variable estimation - complete

  • Linear Panel model estimation - complete

  • Fama-MacBeth regression - complete

  • Linear Factor Asset Pricing - complete

  • System regression - partially complete (3SLS not started)

  • Linear IV Panel model estimation - not started

Requirements

Running

With the exception of Python 3.5+, which is a hard requirement, the others are the version that are being used in the test environment. It is possible that older versions work.

  • Python 3.5+: extensive use of @ operator

  • NumPy (1.11+)

  • SciPy (0.17+)

  • pandas (0.18+)

  • xarray (0.9+)

  • statsmodels (0.8+)

Testing

  • py.test

Documentation

  • sphinx

  • guzzle_sphinx_theme

  • nbsphinx

  • nbconvert

  • nbformat

  • ipython

  • jupyter

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linearmodels-3.5.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

linearmodels-3.5-py2.py3-none-any.whl (1.1 MB view details)

Uploaded Python 2 Python 3

File details

Details for the file linearmodels-3.5.tar.gz.

File metadata

  • Download URL: linearmodels-3.5.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for linearmodels-3.5.tar.gz
Algorithm Hash digest
SHA256 f06c21446b85a5e108b8b6c7910deefe75fdef739b042a98f1cb0fcfd87a2c49
MD5 e73fbe6b1a86b76bc3036dd382d89c30
BLAKE2b-256 b68de3100b0c232e6c32e7ad1f0fc01eb90abaa5aff61e853c807264eec4aae1

See more details on using hashes here.

File details

Details for the file linearmodels-3.5-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for linearmodels-3.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 243c912866c44a35c20e9d227cd635b82da62b34d703c284fcaa22bcd4ad7595
MD5 5c15490e4e20195009b4af92cc7319a4
BLAKE2b-256 a4837659d8fab4877db4085fd596f87273a7daabf0276a5adef1885158efb614

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page