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://git@github.com:GuckLab/StAP.git@X.Y.Zhttps
pip install StAP@git+https://github.com:GuckLab/StAP.git@X.Y.Zwhere 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://git@github.com:GuckLab/StAP.git@0.0.1and https:
pip install StAP@git+https://github.com:GuckLab/StAP.git@0.0.1Windows 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://git@github.com:GuckLab/StAP.git@0.0.2and https:
pip install --upgrade StAP@git+https://github.com:GuckLab/StAP.git@0.0.2