forked from pymc-devs/pymc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
26 lines (25 loc) · 1.17 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
site_name: PyMC3
repo_url: https://github.com/pymc-devs/pymc3
site_author: PyMC devs
markdown_extensions: ['extra', 'mathjax']
extra_javascript: ['https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML','js/mathjaxhelper.js']
pages:
- Overview: 'index.md'
- Tutorial:
- 'Getting started': 'getting_started.md'
- Examples:
- 'BEST': 'BEST.md'
- 'Stochastic Volatility': 'stochastic_volatility.md'
- 'Hierarchical model': 'hierarchical.md'
- 'Linear Regression': 'GLM-linear.md'
- 'Robust Regression': 'GLM-robust.md'
- 'Robust Regression with Outlier Detection': 'GLM-robust-with-outlier-detection.md'
- 'Model Selection for Regression using DIC and WAIC': 'GLM-model-selection.md'
- 'Rolling Regression': 'rolling_regression.md'
- 'Hierarchical linear regression': 'GLM-hierarchical.md'
- 'Probabilistic Matrix Factorization': 'pmf-pymc.md'
- 'Rugby Analytics example': 'rugby_analytics.md'
- 'Posterior Predictive checks and prediction': 'posterior_predictive.md'
- 'Survival Analysis': 'survival_analysis.md'
- 'Gaussian Process (GP) smoothing': 'GP-smoothing.md'
- 'Bayesian Logistic Regression for predicting salary': 'Bayesian_LogReg.md'