-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmkdocs.yml
More file actions
53 lines (50 loc) · 1.46 KB
/
mkdocs.yml
File metadata and controls
53 lines (50 loc) · 1.46 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
site_name: Scheme Dataframe Library
site_description: A dataframe record type for Scheme (R6RS) with procedures to select, drop, and rename columns, and filter, sort, split, bind, append, join, reshape, and aggregate dataframes.
site_url: https://github.com/hinkelman/dataframe
repo_url: https://github.com/hinkelman/dataframe
repo_name: hinkelman/dataframe
theme:
name: material
palette:
- scheme: default
primary: teal
accent: teal
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- content.code.copy
nav:
- Home: index.md
- Getting Started:
- Installation & Import: getting-started.md
- API Reference:
- Types: api/types.md
- Series: api/series.md
- Dataframe: api/dataframe.md
- Display: api/display.md
- Read & Write: api/io.md
- Select & Drop: api/select.md
- Rename: api/rename.md
- Relocate: api/relocate.md
- Filter: api/filter.md
- Sort: api/sort.md
- Split, Bind & Append: api/split-bind-append.md
- Crossing: api/crossing.md
- Join: api/join.md
- Reshape: api/reshape.md
- Modify & Aggregate: api/modify-aggregate.md
- Thread Macros: api/thread.md
- Missing Values: api/missing-values.md
- Statistics: api/statistics.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true