Skip to content

Commit 7388ac6

Browse files
authored
Merge pull request #64 from grisaitis/patch-1
Statistical Rethinking - README improvements
2 parents 0494076 + baa5450 commit 7388ac6

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

Rethinking/README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
# Statistical Rethinking with Python and PyMC3
22

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

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

77
## Display notebooks
88
[![Binder](https://mybinder.org/badge.svg)](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)
1010

1111
## Contributing
1212

1313
All contributions are welcome!
1414

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

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).
1818

1919
## Installing the dependencies
2020

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:
2422

2523
conda env create -f environment.yml
2624

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

30-
source activate stat-rethink-pymc3
27+
Activate the environment by running:
3128

29+
source activate stat-rethink-pymc3
3230

3331
---
3432

0 commit comments

Comments
 (0)