Skip to content

Commit 286e8b6

Browse files
committed
🚚 move notebooks over from pymc3
1 parent c8bc1f7 commit 286e8b6

File tree

89 files changed

+94283
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+94283
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pyc
2+
.ipynb_checkpoints

.pre-commit-config.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
repos:
2+
- repo: https://github.com/nbQA-dev/nbQA
3+
rev: 0.5.5
4+
hooks:
5+
- id: nbqa-black
6+
additional_dependencies: [black==20.8b1]
7+
- id: nbqa-isort
8+
additional_dependencies: [isort==5.6.4]
9+
- id: nbqa-pyupgrade
10+
additional_dependencies: [pyupgrade==2.7.4]
11+
args: [--py37-plus]
12+
- repo: local
13+
hooks:
14+
- id: watermark
15+
args: [--negate, --multiline]
16+
entry: '%load_ext watermark.*%watermark -n -u -v -iv -w'
17+
language: pygrep
18+
minimum_pre_commit_version: 2.8.0
19+
name: Check notebooks have watermark (see Jupyter style guide from PyMC3 Wiki)
20+
types: [jupyter]
21+
- id: check-toc
22+
entry: python scripts/check_toc_is_complete.py
23+
language: python
24+
name: Check all notebooks appear in table of contents
25+
types: [jupyter]

notebooks/AR.ipynb

Lines changed: 585 additions & 0 deletions
Large diffs are not rendered by default.

notebooks/BEST.ipynb

Lines changed: 697 additions & 0 deletions
Large diffs are not rendered by default.

notebooks/Bayes_factor.ipynb

Lines changed: 702 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)