-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
138 lines (129 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
133
134
135
136
137
138
site_name: Temporal Graph Analysis with TGX
site_url: https://shenyanghuang.github.io/TGX
nav:
- Home: index.md
- API:
- ReadWrite:
- Read Data: io/io.md
- Utils:
- Graph stats: utils/graph_stats.md
- Graph Utils: utils/graph_utils.md
- Plotting Utils: utils/plotting_utils.md
- Visualization:
- TEA Plot: viz/vis_tea.md
- TET Plot: viz/vis_tet.md
- Classes:
- Graph: classes/graph.md
- Data:
- Builtin: data/builtin.md
- TGB: data/tgb.md
- Tutorials:
- Load data: tutorials/data_loader.ipynb
- Visualization and Statistics: tutorials/data_viz_stats.ipynb
- Gallery:
- Plots by type:
- TEA Plots:
- Builtin: gallery/0-tea-builtin.md
- TGB: gallery/0-tea-tgb.md
- TET Plots:
- Builtin: gallery/0-tet-builtin.md
- TGB: gallery/0-tet-tgb.md
- Average degree over time:
- Builtin: gallery/0-degree-builtin.md
- TGB: gallery/0-degree-tgb.md
- Node and Edge over time:
- Builtin: gallery/0-node_edge-builtin.md
- TGB: gallery/0-node_edge-tgb.md
- Plots by dataset:
- Builtin:
- Reddit: gallery/reddit.md
- MOOC: gallery/mooc.md
- LastFM: gallery/lastfm.md
- Enron: gallery/enron.md
- Social Evo: gallery/socialevo.md
- UCI: gallery/uci.md
- Flights: gallery/flight.md
- Can Parl: gallery/canparl.md
- US Legis: gallery/uslegis.md
- UN Vote: gallery/unvote.md
- Contacts: gallery/contact.md
- TGB:
- tgbl-wiki: gallery/tgbl-wiki.md
- tgbl-review: gallery/tgbl-review.md
- tgbl-coin: gallery/tgbl-coin.md
- tgbl-comment: gallery/tgbl-comment.md
- tgbl-flight: gallery/tgbl-flight.md
- tgbn-trade: gallery/tgbn-trade.md
- tgbn-genre: gallery/tgbn-genre.md
- tgbn-reddit: gallery/tgbn-reddit.md
- Contribute: contribute.md
- Github: 'https://github.com/ComplexData-MILA/TGX'
theme:
logo: tgx_logo_no_txt.png
name: material
features:
- navigation.tabs
- toc.integrate
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.top
- navigation.tracking
- navigation.tabs.sticky
- navigation.expand
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: navy
accent: red
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: blue
accent: lime
plugins:
- search
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- custom-skip-class-name
auto_caption: false
caption_position: bottom
- mkdocstrings:
watch:
- tgx/
handlers:
python:
setup_commands:
- import sys
- sys.path.append("docs")
- sys.path.append("tgx")
selection:
new_path_syntax: true
rendering:
show_root_heading: false
heading_level: 3
show_root_full_path: false
- mkdocs-jupyter:
execute: false
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html