ambhas 0.3.1
A library devloped under the project AMBHAS
Contents
Installing ambhas
Installing ambhas can be done by downloading source file (ambhas--<version>.tar.gz), and after unpacking issuing the command:
python setup.py install
This requires the usual Distutils options available.
Or, download the ambhas--<version>.tar.gz file and issue the command:
pip install /path/to/ambhas--<version>.tar.gz
Or, directly using the pip:
pip install ambhas
Usage
Import required modules:
import numpy as np from ambhas.errlib import rmse, correlation
Generate some random numbers:
x = np.random.normal(size=100) y = np.random.normal(size=100) rmse(x,y) correlation(x,y)
For using the copula, import copula:
import numpy as np from ambhas.copula import Copula
Generate some random numbers:
x = np.random.normal(size=100) y = np.random.normal(size=100)
Generate an instance of class copula:
foo = Copula(x, y, 'frank')
Now, generate some ensemble using this instance:
u,v = foo.generate(100)
Author
Sat Kumar Tomer satkumartomer at gmail dot com
Changes
0.1.0 * Initial version
0.1.1 * Minor corrections in setup.py files
0.2.0 * few packages added
0.3.0 * groundwater, sun_rise_set, soil texture module, etc. added
0.3.1 * manifest.in file edited
License
Please read LICENSE.text available with the library. Download ========
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| ambhas-0.3.1-py2.7.egg (md5) | Python Egg | 2.7 | 2012-01-25 | 45KB | 233 |
| ambhas-0.3.1.tar.gz (md5) | Source | 2012-01-25 | 26KB | 177 | |
- Author: Sat Kumar Tomer
- Home Page: http://ambhas.com/
- Download URL: http://pypi.python.org/pypi/ambhas/
- Keywords: ambhas,hydrology,statistics,modelling
- Categories
- Package Index Owner: Sat.Tomer
- DOAP record: ambhas-0.3.1.xml
