-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
294 lines (251 loc) Β· 8.94 KB
/
mkdocs.yml
File metadata and controls
294 lines (251 loc) Β· 8.94 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
site_name: Code Campus
repo_url: https://github.com/mciwing/mciwing.github.io
site_url: https://code-campus.at
theme:
name: material
custom_dir: overrides
logo: assets/icons8-mouse-pointer.svg
favicon: assets/icons8-mouse-pointer.svg
palette:
- scheme: slate
primary: custom # teal
accent: custom # peachy peach
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github
features:
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
- content.code.annotate
- navigation.footer
- navigation.top # 'back to top' button on scrolling
- header.autohide
- search.highlight
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/mciwing
copyright:
Β© 2024 - 2026 | Manuel Ferdik & Jakob Klotz
nav:
- Home: index.md
- Python Crash Course:
- Home: python/index.md
- Installation: python/installation.md
- IDE: python/ide.md
- Variables: python/variables.md
- Types:
- Strings: python/types/strings.md
- Integers & Floats: python/types/numbers.md
- Boolean & None: python/types/bool_and_none.md
- Comparisons & Logical Operators: python/comparisons_and_logic.md
- Containers:
- Lists: python/containers/list.md
- Dictionaries: python/containers/dict.md
- Tuples: python/containers/tuple.md
- Control Structures:
- Loops: python/control-structures/for.md
- More Control Structures: python/control-structures/if.md
- Functions: python/functions.md
- Package Management: python/packages.md
- Pandas: python/pandas.md
- Python Extensive Course:
- Home: python-extensive/index.md
- Basics & Data Types:
- Setup:
- Installation: python-extensive/installation.md
- IDE: python-extensive/ide.md
- Variables: python-extensive/variables.md
- Types:
- Strings: python-extensive/types/strings.md
- Integers & Floats: python-extensive/types/numbers.md
- Boolean & None: python-extensive/types/bool_and_none.md
- Logic & Containers:
- Comparisons & Logical Operators: python-extensive/comparisons_and_logic.md
- Containers:
- Lists: python-extensive/containers/list.md
- Dictionaries: python-extensive/containers/dict.md
- Tuples: python-extensive/containers/tuple.md
- Control Structures & Functions:
- Control Structures:
- Loops: python-extensive/control-structures/for.md
- More Control Structures: python-extensive/control-structures/if.md
- Functions: python-extensive/functions.md # TODO: methods vs. functions; variable scope
- Object-Oriented Programming: python-extensive/oop.md
- Dev Tools & Data Handling:
- Package Management: python-extensive/packages.md
- Pandas: python-extensive/pandas.md
- Plotting: python-extensive/plotting.md
- Data Acquisition & Export:
- Data Basics: python-extensive/DataBasics.md
- Data Acquisition:
- Tabular Data: python-extensive/data/tabular.md
- API: python-extensive/data/api.md
- Graphical User Interface:
- Graphical User Interfaces with Tkinter: python-extensive/tkinter.md
- Building Web Applications with Streamlit: python-extensive/streamlit.md
- Tkinter vs Streamlit: python-extensive/tkinter_streamlit.md
- Statistics:
- statistics/index.md
- Data Basics:
- databasics/Terms.md
- databasics/Data.md
- "Data Basics": databasics/DataBasics.md
- Descriptive Statistics:
- Univariate Methods:
- statistics/univariate/Frequency.md
- statistics/univariate/CentralTend.md
- statistics/univariate/Dispersion.md
- Bivariate Methods:
- statistics/bivariate/Frequency.md
- statistics/bivariate/Correlation.md
- Inferential Statistics:
- Probability Theory:
- statistics/probability/General.md
- statistics/probability/Sampling.md
- statistics/probability/LawOfLargeNumbers.md
- statistics/probability/CentralLimitTheorem.md
- Hypothesis Testing:
- statistics/hypothesis/General.md
- statistics/hypothesis/Testing.md
- statistics/hypothesis/Metrics.md
- statistics/hypothesis/Ttest.md
- statistics/hypothesis/ANOVA.md
- Regression Analysis:
- statistics/regression/LinearRegression.md
- Data Science:
- Home: data-science/index.md
- Basics:
- Introduction: data-science/basics/intro.md
- Setup: data-science/basics/setup.md
- Data Preparation & Preprocessing:
- Data Basics: data-science/data/basics.md
- Data Preparation: data-science/data/preparation.md
- Data Preprocessing: data-science/data/preprocessing.md
- Supervised vs. Unsupervised Learning:
- Introduction: data-science/algorithms/intro.md
- Supervised:
- Regression: data-science/algorithms/supervised/regression.md
- Classification: data-science/algorithms/supervised/classification.md
- Tree Based:
- Decision Tree: data-science/algorithms/supervised/tree-based/cart.md
- Random Forest: data-science/algorithms/supervised/tree-based/forest.md
- Unsupervised:
- Clustering: data-science/algorithms/unsupervised/clustering.md
- Dimensionality Reduction: data-science/algorithms/unsupervised/dim-reduction.md
- Data Science in Practice:
- Introduction: data-science/practice/intro.md
- 1. Data Preparation: data-science/practice/data-preparation.md
- 2. Modelling: data-science/practice/modelling.md
- 3. End-to-End: data-science/practice/end-to-end.md
- Bonus: data-science/practice/bonus.md
- Computer Vision:
- yolo/index.md
- yolo/approaches.md
- yolo/yolo.md
- Image Processing π·:
- yolo/image/detection.md
- yolo/image/segmentation.md
- yolo/image/kp-extraction.md
- Video Processing π₯:
- yolo/video/index.md
- yolo/video/solutions.md
- Train a Model ποΈ:
- yolo/train/index.md
- yolo/train/acquisition.md
- yolo/train/annotation.md
- yolo/train/training.md
- yolo/train/inference.md
- 'Bonus: Training with Colab': yolo/train/colab.md
- MicroPython:
- micropython/index.md
- micropython/setup.md
- micropython/sensors.md
- micropython/actuator.md
- micropython/mqtt.md
- micropython/system.md
- Projects & Blog:
- Home: blog/index.md
plugins:
- search
- blog
- tags
- git-revision-date-localized:
# has an impact on build time
enable_creation_date: false
type: timeago
exclude:
- index.md
# has an issue with git --follow
# see https://timvink.github.io/mkdocs-git-revision-date-localized-plugin/options/#enable_git_follow
- python-extensive/data/api.md
# posts have their own date displayed in metadata
- blog/*
enabled: !ENV [ENABLE_GIT_REVISION_DATE, true]
- git-authors:
show_email_address: false
sort_authors_by: "contribution"
enabled: !ENV [ENABLE_GIT_AUTHORS, true]
enabled_on_serve: !ENV [ENABLE_GIT_AUTHORS_SERVE, true]
fallback_to_empty: false
exclude:
- blog/*
# Content added with include-markdown plugin that would display the
# wrong author
- python-extensive/DataBasics.md
- data-science/data-basics/*
- data-science/algorithms/supervised/regression.md
- include-markdown
- mkdocs_quiz:
auto_submit: true
disable_after_submit: false
show_progress: false
show_correct: false
shuffle_answers: true
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.emoji: # enable icons/emojis
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences: # to activate diagrams
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.keys # render keyboard shortcuts
- pymdownx.critic
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- footnotes
- pymdownx.arithmatex:
generic: true
- tables
- pymdownx.tabbed: # enable content tabs
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
- stylesheets/colors.css