A set of recursive population models for ecologists
Project description
generations
A set of recursive population models for ecologists including:
- Nicholson Bailey host-parasitoid model
- Weed-herbivore coupled model for an annual plant that forms a seed bank from Buckley et al. 2005
- Weed-herbivore model for a biennial plant that forms a seed bank
Installation
Generations is available from the Python Package Index. It can be installed using pip
:
pip install generations
Running
Once installed, the user can run the various models in generations
by entering the following commands. Python's -m
flag imports and runs the specified module. Each population model in generations
is in it's own module:
python -m generations.nicholson_bailey
python -m generations.buckley
python -m generations.biennial
Visualization
Generations requires the Bokeh Python package to generate interactive plots of the simulation outputs in the browser. This functionality is attached to each modeling module. When the module runs, it automatically generates a .csv of the population densities for each organism at each time step Bokeh uses that .csv to automatically generate an html page with an interactive plot of the results in the user's browser.
Custom parameters
The user can also create a copy of the default configuration file for the population model modules in their working directory. The file will be named model_parameters.cfg
.
python -m generations.create_config
The user can then edit parameters to fit their desired ecological system. Model parameters will be loaded from the working directory into the population models at runtime.
Development
Generations source code is available on GitHub.
git clone https://github.com/alfalimajuliett/generations.git
Testing
./test.sh
This will run the unit tests. If you have pipenv, it will also run a number of other checks:
yapf
: reformat the code automaticallymypy
: check for runtime errors like misnamed imports or variables, or incompatible typestox
: run the unit tests against Python 2.7 and 3.7coverage
: report on lines that are not covered by unit tests
Uploading to PyPI
Install pipenv if you don't have it.
Increment the version in setup.py
.
Run the tests one last time:
./test.sh
Build the distribution files:
pipenv run python3 setup.py sdist bdist_wheel
Upload using twine
. It will prompt for your PyPI password:
pipenv run twine upload dist/*
Commit the version, create a tag, and push tags:
git commit -am "$version"
git tag $version
git push --tags
git push
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
Built Distribution
File details
Details for the file generations-1.3.0.tar.gz
.
File metadata
- Download URL: generations-1.3.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f80efd82515cbc6be359a544596831c3955a924776cad56dbfd04bd356f97c5a |
|
MD5 | 4512442e273600fb0524278397d342d8 |
|
BLAKE2b-256 | efdbfecf6542bb909dc178d9faabd6519835831375a504cb84ce7ec94bd9c260 |
Provenance
File details
Details for the file generations-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: generations-1.3.0-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.44.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db700086fdd484af9c3d4e944dfa2f5b6760dda7400ff9e2a7968dfa32897476 |
|
MD5 | fc36707bc466e12edbea54e5c6bdf566 |
|
BLAKE2b-256 | 2d15330be202b0cba12dfce89fd0ded3d6ac1357bd94771f90380859ebd3e007 |