Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 2.07 KB

developer.rst

File metadata and controls

46 lines (30 loc) · 2.07 KB

Developer Page

Here you will find basic information on getting involved in statsmodels development. There is more detailed information in the :doc:`official statsmodels documentation <documentation>`.

Git Repositories

Statsmodels development has been moved to GitHub and uses the Git distributed version control system. You can download the source code from github:

git clone git://github.com/statsmodels/statsmodels.git

Contributing to Statsmodels

The developer page in the official documentation has instructions on contributing to statsmodels as a developer. Here you'll find some information about working with git as well as code and documentation style guidelines.

Where to Start

If you would like to contribute but have no idea where to start, see our Get Involved Page in the official documentation.

Bug Reports, Enchancements and Feature Requests

You can file bug reports or request enhancements to existing code or new features on the GitHub Issue Tracker.

Mailing List

We discuss development on the mailing list at google groups.

Dependencies

  • Python >= 2.5, including Python 3.x
  • NumPy (>=1.4)
  • SciPy (>=0.7)
  • Pandas >= 0.7.1
  • Cython >= 15.1, Optional but recommended when building from source.

Optional Dependencies

  • Matplotlib is needed for plotting functions and running many of the examples.
  • Nose is required to run the test suite.