Functions that help interface with cmdStan.


License
MIT
Install
pip install stanhelper==1.2.0

Documentation

Stanhelper

Stanhelper is a lightweight wrapper around cmdStan.

Installation

To install from pip, run

pip install stanhelper

Development

To begin:

(venv)$ pip install pip-tools

To keep environment updated:

(venv)$ pip-compile --output-file requirements.txt requirements.in
(venv)$ pip-sync

To install stanhelper in develop mode:

(venv)$ python setup.py develop

Testing

Make sure you compile the Stan files under tests first. Then run

(venv)$ pytest --flake8