-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
132 lines (125 loc) · 3.67 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
127
128
129
130
131
132
site_name: DaSPi
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: amber
accent: deep orange
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: amber
accent: deep orange
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
repo_name: j4ggr/DaSPi
repo_url: https://github.com/j4ggr/DaSPi
plugins:
search: null
mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: list
heading_level: 3
merge_init_into_class: false
show_bases: true
show_source: false
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_docstring_functions: true
inherited_members: true
members_order: alphabetical
group_by_category: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home:
- DaSPi: index.md
- Changelog: CHANGELOG.md
- User Guide:
- guides/index.md
- guides/installing.md
- guides/anova.md
- guides/process_improvement.md
# - guides/plotting.md
# - guides/hypothesis-testing.md
- API:
- Anova:
- ANOVA: anova/index.md
- anova/linear-model.md
- Plotlib:
- Plotting Library: plotlib/index.md
- Chart:
- Chart Module: plotlib/chart/index.md
- plotlib/chart/chart.md
- plotlib/chart/single-chart.md
- plotlib/chart/multiple-variate-chart.md
- plotlib/chart/joint-chart.md
- Plotter:
- Plotter Module: plotlib/plotter/index.md
- plotlib/plotter/plotter.md
- plotlib/plotter/scatter.md
- plotlib/plotter/line.md
- plotlib/plotter/linear-regression.md
- plotlib/plotter/probability.md
- plotlib/plotter/parallel-coordinate.md
- plotlib/plotter/bland-altman.md
- plotlib/plotter/transform-plotter.md
- plotlib/plotter/center-location.md
- plotlib/plotter/bar.md
- plotlib/plotter/pareto.md
- plotlib/plotter/jitter.md
- plotlib/plotter/gaussian-kde.md
- plotlib/plotter/violine.md
- plotlib/plotter/errorbar.md
- plotlib/plotter/standard-error-mean.md
- plotlib/plotter/spread-width.md
- plotlib/plotter/confidence-interval.md
- plotlib/plotter/mean-test.md
- plotlib/plotter/variation-test.md
- Facets:
- Facets Module: plotlib/facets/index.md
- plotlib/facets/axes-facets.md
- plotlib/facets/label-facets.md
- plotlib/facets/stripes-facets.md
- Statistics:
- Statistics Library: statistics/index.md
- Hypothesis:
- statistics/hypothesis/index.md
- Estimation:
- statistics/estimation/index.md
- statistics/estimation/estimator.md
- statistics/estimation/process-estimator.md
- Confidence:
- statistics/confidence/index.md