-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
69 lines (69 loc) · 2.15 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
site_name: Cluster Experiments Docs
extra_css: [style.css]
repo_url: https://github.com/david26694/cluster-experiments
site_url: https://david26694.github.io/cluster-experiments/
site_description: Functions to design and run clustered experiments
site_author: David Masip
use_directory_urls: false
edit_uri: blob/main/docs/
nav:
- Home:
- Index: index.md
- Cupac example: cupac_example.ipynb
- Custom classes: create_custom_classes.ipynb
- Switchback:
- Stratified switchback: switchback.ipynb
- Switchback calendar visualization: plot_calendars.ipynb
- Visualization - 4-hour switches: plot_calendars_hours.ipynb
- Multiple treatments: multivariate.ipynb
- AA test clustered: aa_test.ipynb
- Paired T test: paired_ttest.ipynb
- Different hypotheses tests: analysis_with_different_hypotheses.ipynb
- Washover: washover_example.ipynb
- Normal Power:
- Compare with simulation: normal_power.ipynb
- Time-lines: normal_power_lines.ipynb
- Synthetic control: synthetic_control.ipynb
- Experiment analysis workflow: experiment_analysis.ipynb
- Delta Method Analysis: delta_method.ipynb
- API:
- Experiment analysis methods: api/experiment_analysis.md
- Perturbators: api/perturbator.md
- Splitter: api/random_splitter.md
- Pre experiment outcome model: api/cupac_model.md
- Power config: api/power_config.md
- Power analysis: api/power_analysis.md
- Washover: api/washover.md
- Metric: api/metric.md
- Variant: api/variant.md
- Dimension: api/dimension.md
- Hypothesis Test: api/hypothesis_test.md
- Analysis Plan: api/analysis_plan.md
plugins:
- mkdocstrings:
watch:
- cluster_experiments
- mkdocs-jupyter
- search
copyright: Copyright © 2022 Maintained by David Masip.
theme:
name: material
font:
text: Ubuntu
code: Ubuntu Mono
feature:
tabs: true
palette:
primary: indigo
accent: blue
markdown_extensions:
- codehilite
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed
- pymdownx.snippets
- pymdownx.highlight:
use_pygments: true
- toc:
permalink: true