-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
43 lines (43 loc) · 1.58 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
site_name: distl
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- python
repo_name: GitHub
repo_url: https://github.com/kecnry/distl/
edit_uri: blob/master/docs/
extra_css: [extra.css]
nav:
- Installation & Setup: index.md
- Examples:
- sampling: examples/sampling.md
- random seed: examples/random_seed.md
- plotting: examples/plotting.md
- math: examples/math.md
- and/or logic: examples/and_or.md
- custom functions: examples/function.md
- units: examples/units.md
- wrapping: examples/wrapping.md
- multivariate: examples/multivariate.md
- multivariate slices: examples/multivariate_slice.md
- distribution collections: examples/collections.md
- copy vs deepcopy: examples/copy_deepcopy.md
- sampling cache: examples/sample_cache.md
# - fitting with EMCEE: examples/fitting_emcee.md
- API:
- distl: api.md
- Delta: api/Delta.md
- Gaussian: api/Gaussian.md
- Uniform: api/Uniform.md
- Histogram: api/Histogram.md
- Composite: api/Composite.md
- Function: api/Function.md
- Delta Around: api/Delta_Around.md
- Uniform Around: api/Uniform_Around.md
- Gaussian_Around: api/Gaussian_Around.md
- Multivariate Gaussian: api/MVGaussian.md
- Multivariate Gaussian Slice: api/MVGaussianSlice.md
- Multivariate Histogram: api/MVHistogram.md
- Multivariate Histogram Slice: api/MVHistogramSlice.md
- DistributionCollection: api/DistributionCollection.md