|
1 | 1 | # Statistical Rethinking with Python and PyMC3
|
2 | 2 |
|
3 |
| -[Statistical Rethinking](http://xcelab.net/rm/statistical-rethinking/) is an incredible good introductory book to Bayesian Statistics, its follows a _Jaynesian_ and practical approach with very good examples and clear explanations. |
| 3 | +[Statistical Rethinking](http://xcelab.net/rm/statistical-rethinking/) is an incredible introductory book to Bayesian Statistics. It follows a [_Jaynesian_](https://en.wikipedia.org/wiki/Edwin_Thompson_Jaynes) and practical approach with very good examples and clear explanations. |
4 | 4 |
|
5 |
| -In this repository we ported the codes ([originally in R and Stan](https://github.com/rmcelreath/rethinking)) in the book to PyMC3. We are trying to keep the examples as close as possible to those in the book, while at the same time trying to express them in the most _Pythonic_ and _PyMC3onic_ way we can. |
| 5 | +In this repository we port [the book's original code in R and Stan](https://github.com/rmcelreath/rethinking) to Python and PyMC3. We attempt to reproduce the examples as faithfully as possible while expressing them in a _Pythonic_ and _PyMC3onic_ way. |
6 | 6 |
|
7 | 7 | ## Display notebooks
|
8 | 8 | [](https://mybinder.org/v2/gh/pymc-devs/resources/master?filepath=Rethinking)
|
9 |
| -[<img src="http://nbviewer.jupyter.org/static/img/nav_logo.svg" width=120>](http://nbviewer.jupyter.org/github/pymc-devs/resources/blob/master/Rethinking) |
| 9 | +[<img src="http://nbviewer.jupyter.org/static/img/nav_logo.svg" width=120>](http://nbviewer.jupyter.org/github/pymc-devs/resources/blob/master/Rethinking) |
10 | 10 |
|
11 | 11 | ## Contributing
|
12 | 12 |
|
13 | 13 | All contributions are welcome!
|
14 | 14 |
|
15 |
| -Feel free to send PR to fix errors, improve the code or made comments that could help the user of this repository and readers of the book. |
| 15 | +Feel free to send PR to fix errors, improve the code, or make comments that could help users of this repository and readers of the book. |
16 | 16 |
|
17 |
| -You can also join the discussion on [Gitter](https://gitter.im/Statistical-Rethinking-with-Python-and-PyMC3/Lobby) |
| 17 | +You can also join the discussion on [Gitter](https://gitter.im/Statistical-Rethinking-with-Python-and-PyMC3/Lobby). |
18 | 18 |
|
19 | 19 | ## Installing the dependencies
|
20 | 20 |
|
21 |
| -To install the dependencies to run these notebooks, you can use |
22 |
| -[Anaconda](https://www.continuum.io/downloads). Once you have installed |
23 |
| -Anaconda, run: |
| 21 | +To install the dependencies to run these notebooks, you can use [Anaconda](https://www.continuum.io/downloads). Once you have installed Anaconda, run: |
24 | 22 |
|
25 | 23 | conda env create -f environment.yml
|
26 | 24 |
|
27 |
| -to install all the dependencies into an isolated environment. You can switch to |
28 |
| -this environment by running: |
| 25 | +to install all the dependencies into an isolated environment. |
29 | 26 |
|
30 |
| - source activate stat-rethink-pymc3 |
| 27 | +Activate the environment by running: |
31 | 28 |
|
| 29 | + source activate stat-rethink-pymc3 |
32 | 30 |
|
33 | 31 | ---
|
34 | 32 |
|
|
0 commit comments