-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate documentation to Quarto (#712)
- Loading branch information
1 parent
bdbc4cc
commit ae00f26
Showing
51 changed files
with
749 additions
and
609 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ tags | |
.cache | ||
docs/_build | ||
.vscode/ | ||
pytest.ini | ||
pytest.ini | ||
/.quarto/ |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.quarto/ | ||
_site | ||
api/* | ||
CHANGELOG.md |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
project: | ||
type: website | ||
output-dir: _site | ||
pre-render: pre_render.py | ||
#post-render: post_render.py | ||
resources: | ||
- api/** | ||
|
||
website: | ||
title: "Bambi" | ||
description: "BAyesian Model Building Interface in Python" | ||
repo-url: https://github.com/bambinos/bambi | ||
page-navigation: true | ||
favicon: "logos/favicon.png" | ||
page-footer: | ||
center: © Copyright 2023, The developers of Bambi. | ||
navbar: | ||
title: false | ||
background: light | ||
search: true | ||
pinned: true | ||
logo: "logos/RGB/Bambi_logo.png" | ||
logo-alt: "bambi-home" | ||
right: | ||
- text: Reference | ||
href: api/index.html | ||
- text: Examples | ||
href: notebooks/index.qmd | ||
- text: FAQ | ||
file: faq.qmd | ||
- text: Changelog | ||
file: CHANGELOG.md | ||
- icon: github | ||
href: https://github.com/bambinos/bambi | ||
|
||
sidebar: | ||
- id: reference | ||
contents: _sidebar.yml | ||
- id: examples | ||
style: floating | ||
collapse-level: 1 | ||
contents: | ||
- notebooks/index.qmd | ||
- section: Linear regression models | ||
contents: | ||
- notebooks/t-test.ipynb | ||
- notebooks/ESCS_multiple_regression.ipynb | ||
- notebooks/splines_cherry_blossoms.ipynb | ||
- notebooks/multi-level_regression.ipynb | ||
- notebooks/sleepstudy.ipynb | ||
- notebooks/radon_example.ipynb | ||
- notebooks/Strack_RRR_re_analysis.ipynb | ||
- notebooks/shooter_crossed_random_ANOVA.ipynb | ||
- notebooks/t_regression.ipynb | ||
- section: Generalized linear models | ||
contents: | ||
- notebooks/logistic_regression.ipynb | ||
- notebooks/model_comparison.ipynb | ||
- notebooks/hierarchical_binomial_bambi.ipynb | ||
- notebooks/alternative_links_binary.ipynb | ||
- notebooks/wald_gamma_glm.ipynb | ||
- notebooks/negative_binomial.ipynb | ||
- notebooks/beta_regression.ipynb | ||
- notebooks/categorical_regression.ipynb | ||
- notebooks/circular_regression.ipynb | ||
- notebooks/quantile_regression.ipynb | ||
- section: More advanced models | ||
contents: | ||
- notebooks/distributional_models.ipynb | ||
- notebooks/hsgp_1d.ipynb | ||
- notebooks/hsgp_2d.ipynb | ||
- section: Tools to interpret model outputs | ||
contents: | ||
- notebooks/plot_predictions.ipynb | ||
- notebooks/plot_comparisons.ipynb | ||
- notebooks/plot_slopes.ipynb | ||
|
||
quartodoc: | ||
style: pkgdown | ||
dir: api | ||
package: bambi # the name used to import the package | ||
sidebar: api/_sidebar.yml # write sidebar data to this file | ||
sections: | ||
- title: Model | ||
desc: The basics | ||
contents: | ||
- Model | ||
- Formula | ||
- title: Setting up priors | ||
desc: "" | ||
contents: | ||
- Prior | ||
- title: Custom families | ||
desc: "" | ||
contents: | ||
- Family | ||
- Likelihood | ||
- Link | ||
- title: Plots | ||
desc: "" | ||
contents: | ||
- interpret.plot_comparisons | ||
- interpret.plot_predictions | ||
- interpret.plot_slopes | ||
- title: Interpretations | ||
desc: "" | ||
contents: | ||
- interpret.comparisons | ||
- interpret.predictions | ||
- interpret.slopes | ||
- title: Data | ||
desc: "" | ||
contents: | ||
- clear_data_home | ||
- load_data | ||
|
||
|
||
# Tell quarto to read the generated sidebar | ||
metadata-files: | ||
- api/_sidebar.yml | ||
|
||
# filters: | ||
# - interlinks | ||
|
||
# interlinks: | ||
# sources: {} | ||
|
||
# profile: | ||
# default: latest | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
css: styles.css | ||
toc: true | ||
|
||
|
||
# https://github.com/quarto-dev/quarto-web/tree/main/docs/gallery |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.