StAP (statistics and probability) repository from the GuckLab.
StAP contains resources, examples and tutorials on statistics and probability.
- Resources can be found here.
- Workshops can be found here. Workshop example notebooks can be run by clicking on the button in the next section.
You can run any jupyter notebooks in the browser by clicking on the below button:
There are currently Python versions of each notebook. We wish to have Wolfram Mathematica versions also available in the future.
- Here is a great tutorial on Jupyter Notebooks from Corey Schafer.
This section is only for users. If you are a developer and want to contribute to StAP, you have to clone the repository and install in editable mode (see below).
Depending on how you set up your GitHub/Lab, one of those commands will work (should be using ssh!):
ssh
pip install StAP@git+ssh://[email protected]:GuckLab/[email protected]
https
pip install StAP@git+https://github.com:GuckLab/[email protected]
where X.Y.Z
is the version of the package you are interested in.
For example to install StAP==0.0.1
via SSH
(works if you have two-factor authentication enabled), run:
pip install StAP@git+ssh://[email protected]:GuckLab/[email protected]
and https:
pip install StAP@git+https://github.com:GuckLab/[email protected]
Windows users please note that this might only work with git bash, depending on permissions.
To upgrade to a new version, use the --upgrade
argument:
pip install --upgrade StAP@git+ssh://[email protected]:GuckLab/[email protected]
and https:
pip install --upgrade StAP@git+https://github.com:GuckLab/[email protected]