Skip to content

Latest commit

 

History

History
107 lines (71 loc) · 2.34 KB

File metadata and controls

107 lines (71 loc) · 2.34 KB

StAP

StAP (statistics and probability) repository from the GuckLab.

What is in StAP?

StAP contains resources, examples and tutorials on statistics and probability.

Running StAP examples in the browser

You can run any jupyter notebooks in the browser by clicking on the below button:

Binder

There are currently Python versions of each notebook. We wish to have Wolfram Mathematica versions also available in the future.

Using Jupyter Notebooks

Installing StAP

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.Z

https

pip install StAP@git+https://github.com:GuckLab/StAP.git@X.Y.Z

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://git@github.com:GuckLab/StAP.git@0.0.1

and https:

pip install StAP@git+https://github.com:GuckLab/StAP.git@0.0.1

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://git@github.com:GuckLab/StAP.git@0.0.2

and https:

pip install --upgrade StAP@git+https://github.com:GuckLab/StAP.git@0.0.2