-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
126 lines (111 loc) · 3.04 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
# Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com>
# Project information
site_name: R for Data Science
site_url: https://github.com/fralfaro/r4ds-book
site_author: Francisco Alfaro
site_description: R for data science ( a book with mkdocs )
# Repository
repo_name: hadley/r4ds
repo_url: https://github.com/hadley/r4ds/
edit_uri: ''
# Markdown extensions
markdown_extensions:
- attr_list
- admonition
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tabbed
# Extra javascript
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Theme
theme:
name: material
language: en
logo: images/logo.bmp
favicon: images/logo_r.bmp
features:
- navigation.instant
- navigation.top
- content.code.annotate
- search.suggest
- search.highlight
palette:
# Light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: black
accent: light blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
toggle:
icon: material/toggle-switch
name: Switch to light mode
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/hadley
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/hadleywickham/
- icon: fontawesome/brands/twitter
link: https://twitter.com/hadleywickham
- icon: fontawesome/solid/globe
link: https://hadley.nz/
# Plugins
plugins:
- mkdocs-jupyter:
kernel_name: python3
- search
# TOC
nav:
- Home: index.md
- 01_introduction.ipynb
- Explore:
- Introduction: 02_introduction.ipynb
- 03_ data_visualisation.ipynb
- 04_workflow_basics.ipynb
- 05_data_transformation.ipynb
- 06_workflow_scripts.ipynb
- 07_exploratory_data_analysis.ipynb
- 08_workflow_projects.ipynb
- Wrangle:
- Introduction: 09_introduction.ipynb
- 10_tibbles.ipynb
- 11_data_import.ipynb
- 12_tidy_data.ipynb
- 13_relational_data.ipynb
- 14_strings.ipynb
- 15_factors.ipynb
- 16_dates_and _times.ipynb
- Program:
- Introduction: 17_introduction.ipynb
- 18_pipes.ipynb
- Functions: 19_functions.md
- 20_vectors.ipynb
- 21_iteration.ipynb
- Model:
- Introduction: 22_introduction.ipynb
- 23_model_basics.ipynb
- 24_model_building.ipynb
- 25_many_models.ipynb
- Communicate:
- Introduction: 26_introduction.ipynb
- 27_r_markdown.ipynb
- 28_graphics_for_communication.ipynb
- 29_R_Markdown_formats.ipynb
- 30_r_markdown_workflow.ipynb