Skip to content

Commit a8f9c02

Browse files
authored
Merge pull request #11 from pymc-devs/intro
Intro
2 parents aebc0ac + 2a66dcd commit a8f9c02

File tree

2 files changed

+35
-7
lines changed

2 files changed

+35
-7
lines changed

README.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@
22
Bayesian Additive Regression Trees for Probabilistic programming with PyMC
33

44

5+
PyMC-BART extends [PyMC](https://github.com/pymc-devs/pymc) probabilistic programming framework to be able to define and solve models including a BART random variable. PyMC-BART also includes a few helpers function to aid with the interpretation of those models and perform variable selection.
6+
7+
8+
## Installation
9+
10+
PyMC-BART requires a working Python interpreter (3.8+). We recommend installing Python and key numerical libraries using the [Anaconda Distribution](https://www.anaconda.com/products/individual#Downloads), which has one-click installers available on all major platforms.
11+
12+
Assuming a standard Python environment is installed on your machine (including pip), PyMC-BART itself can be installed in one line using pip:
13+
14+
pip install pymc-bart
15+
16+
Alternatively, if you want the bleeding edge version of the package you can install from GitHub:
17+
18+
pip install git+https://github.com/pymc-devs/pymc-bart.git
19+
20+
521
## Contributions
6-
pymc_bart is a community project and welcomes contributions.
22+
PyMC-BART is a community project and welcomes contributions.
723
Additional information can be found in the [Contributing Readme](https://github.com/pymc-devs/pymc_bart/blob/main/CONTRIBUTING.md)
824

9-
1025
## Code of Conduct
11-
pymc_bart wishes to maintain a positive community. Additional details
26+
PyMC-BART wishes to maintain a positive community. Additional details
1227
can be found in the [Code of Conduct](https://github.com/pymc-devs/pymc_bart/blob/main/CODE_OF_CONDUCT.md)
1328

1429
## Citation
@@ -28,7 +43,7 @@ primaryClass={stat.CO}
2843
```
2944

3045
## Donations
31-
pymc_bart, as other pymc-devs projects, is a non-profit project under the NumFOCUS umbrella. If you want to support pymc_bart financially, you can donate [here](https://numfocus.org/donate-to-pymc).
46+
PyMC-BART , as other pymc-devs projects, is a non-profit project under the NumFOCUS umbrella. If you want to support PyMC-BART financially, you can donate [here](https://numfocus.org/donate-to-pymc).
3247

3348
## Sponsors
3449
[![NumFOCUS](https://www.numfocus.org/wp-content/uploads/2017/07/NumFocus_LRG.png)](https://numfocus.org)

docs/index.rst

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,34 @@ PyMC-BART
1919
Bayesian Additive Regression Trees for Probabilistic programming with PyMC
2020

2121

22-
Dependencies
22+
Overview
2323
============
24-
PyMC-BART is tested on Python 3.8+ and depends on PyMC V4.
24+
PyMC-BART extends `PyMC <https://github.com/pymc-devs/pymc>`_ probabilistic programming framework to be able to define
25+
and solve models including a BART random variable. PyMC-BART also includes a few helpers function to aid with the
26+
interpretation of those models and perform variable selection.
27+
2528

2629
Installation
2730
============
2831

32+
PyMC-BART requires a working Python interpreter (3.8+). We recommend installing Python and key numerical libraries using the `Anaconda distribution <https://www.anaconda.com/products/individual#Downloads>`_, which has one-click installers available on all major platforms.
33+
34+
Assuming a standard Python environment is installed on your machine (including pip), PyMC-BART itself can be installed in one line using pip:
35+
36+
.. code-block:: bash
37+
38+
pip install pymc-bart
39+
40+
Alternatively, if you want the bleeding edge version of the package you can install from GitHub:
41+
2942
.. code-block:: bash
3043
3144
pip install git+https://github.com/pymc-devs/pymc-bart.git
3245
3346
3447
Citation
3548
========
36-
If you use Bambi and want to cite it please use |arXiv|
49+
If you use PyMC-BART and want to cite it please use |arXiv|
3750

3851
.. |arXiv| image:: https://img.shields.io/badge/arXiv-2206.03619-b31b1b.svg
3952
:target: https://arxiv.org/abs/2206.03619

0 commit comments

Comments
 (0)