~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to scipy/sandbox/models/info.py

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
Statistical models
 
3
 
 
4
 - model `formula`
 
5
 - standard `regression` models
 
6
 
 
7
  - `ols_model` (ordinary least square regression)
 
8
  - `wls_model` (weighted least square regression)
 
9
  - `ar_model` (autoregressive model)
 
10
 
 
11
 - `glm.model` (generalized linear models)
 
12
 - robust statistical models
 
13
 
 
14
  - `rlm.model` (robust linear models using M estimators)
 
15
  - `robust.norms` estimates
 
16
  - `robust.scale` estimates (MAD, Huber's proposal 2).
 
17
 
 
18
 - `mixed` effects models
 
19
 - `gam` (generalized additive models)
 
20
"""
 
21
__docformat__ = 'restructuredtext en'
 
22
 
 
23
depends = ['weave',
 
24
           'special.orthogonal',
 
25
           'integrate',
 
26
           'optimize',
 
27
           'linalg']
 
28
 
 
29
postpone_import = True