-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
126 lines (110 loc) · 3.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
site_name: Prophetverse
theme:
name: material
logo: static/logo-removebg.png
features:
- content.code.copy
- navigation.tabs
- navigation.instant
- navigation.instant.progress
- search
- toc.integrate
- toc.follow
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
repo_url: https://github.com/felipeangelimvieira/prophetverse
site_url: 'https://prophetverse.com/'
nav:
- Home: README.md
- Tutorial 📚:
- Univariate Time Series: tutorial/univariate/index.md
- Hierarchical Time Series: tutorial/hierarchical/index.md
- Nonnegative timeseries: tutorial/count-data/index.md
- How-to 🛠️:
- Overview: howto/index.md
- Custom Exogenous Effects ✨ : howto/custom-effects/index.md
- Custom Trend 🌟: howto/custom-trend/index.md
- Composite Exogenous Effects: howto/composite-exogenous-effects/index.md
- Marketing Mix Modeling 🚀:
- Overview: mmm/index.md
- Lift test calibration: mmm/lifttest/index.md
- Mathematical formulation 📖:
- Theory: the-theory.md
- Reference:
- Sktime:
- Prophetverse: reference/sktime/prophetverse.md
- Prophet: reference/sktime/prophet.md
- ProphetGamma: reference/sktime/prophet_gamma.md
- ProphetNegBinomial: reference/sktime/prophet_negbin.md
- Hierarchical Prophet: reference/sktime/hierarchical_prophet.md
- Inference Engines: reference/inference_engine.md
- Optimizers: reference/optimizers.md
- Exogenous Effects: reference/effects.md
- Trend models: reference/trends.md
- Development:
- Contributing to Prophetverse: development/development-guide.md
- Deprecation Policy: deprecation.md
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
docstring_style: numpy
- mkdocs-jupyter:
use_directory_urls: false
#- ipymd:
# nbconvert_template: docs/ipymd/custom-template.tpl
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
extra_javascript:
#- javascripts/katex.js
#- https://unpkg.com/katex@0/dist/katex.min.js
#- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- https://unpkg.com/katex@0/dist/katex.min
- stylesheets/extra.css
- ipymd/pandas.css
- ipymd/cell-style.css
- ipymd/pygments.css
extra:
version:
provider: mike