forked from murphyqm/key-data-vis-requirements
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
76 lines (68 loc) · 2 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
site_name: SWD7 - Introduction to Data Visualisation in Python
repo_url: https://github.com/ARCTraining/swd7-notes
repo_name: SWD7-notes
copyright: By University of Leeds Research Computing Team, Copyright © 2024
theme:
name: "material"
custom_dir: overrides
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- navigation.footer
palette:
# Palette toggle for light mode
- scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to light mode
plugins:
- mkdocs-jupyter:
ignore_h1_titles: True
include_source: True
# - search
# - toggle-sidebar
# - awesome-pages
# - mermaid2:
# arguments:
# theme: 'base'
markdown_extensions:
- pymdownx.arithmatex:
generic: true
block_tag: 'pre'
- pymdownx.details
- pymdownx.tilde
- pymdownx.snippets
- admonition
- pymdownx.blocks.tab
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
nav:
- Course content: index.md
- Delivery guidelines: guidelines.md
- Introduction: 00-Introduction.md
- 5 Key Concepts:
- 1. Audience: 01-Audience.md
- 2. Story: 02-Story.md
- 3. Encoding: 03-Encoding.md
- 4. Composition: 04-Composition.md
- 5. Simplify: 05-Simplify.md
- Practical Session:
- How to use this resource: nbs/00_explanation.md
- Building gridded plots: nbs/gridded_plots.md
- 1. Introduction notebook: nbs/01_datavis_solutions.ipynb
- 2. Other libraries notebook: nbs/02_datavis_solutions.ipynb
- 3. Composition of multi-panel plots notebook: nbs/03_datavis_solutions.ipynb
- 4. Exploring heatmaps and legends: nbs/04_datavis_solutions.ipynb
- 5. Exploring a dataset: nbs/05_datavis_solutions.ipynb