forked from shakedzy/dython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
42 lines (42 loc) · 1.59 KB
/
mkdocs.yml
File metadata and controls
42 lines (42 loc) · 1.59 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
site_name: dython
site_description: A set of data-analysis tools for Python 3.x
site_long_description: Dython is a set of data-analysis tools written in Python 3.x, which can let you get more insights about your data. Dython was designed with analysis usage in mind - meaning ease-of-use, functionality and readability are the core values of this library.
site_author: Shaked Zychlinski
site_url: http://shakedzy.xyz/dython/
repo_name: shakedzy/dython
repo_url: https://github.com/shakedzy/dython
copyright: Copyright © Shaked Zychlinski
theme:
name: material
custom_dir: docs/overrides
palette:
primary: light blue
accent: blue
logo: images/favicon.png
favicon: images/favicon.png
nav:
- Home: 'index.md'
- Getting Started:
- Installation: 'getting_started/installation.md'
- Examples: 'getting_started/examples.md'
- Modules:
- data_utils: 'modules/data_utils.md'
- nominal: 'modules/nominal.md'
- model_utils: 'modules/model_utils.md'
- sampling: 'modules/sampling.md'
- Related Blogosts:
- The Search for Categorical Correlation: "https://medium.com/@shakedzy/the-search-for-categorical-correlation-a1cf7f1888c9"
- Hard ROC - Really Understanding & Properly Using ROC and AUC: https://medium.com/@shakedzy/hard-roc-really-understanding-and-properly-using-roc-and-auc-13413cf0dc24"
google_analytics:
- UA-141245946-2
- auto
markdown_extensions:
- toc:
permalink: true
- admonition
- codehilite
- pymdownx.arithmatex
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML
plugins:
- search