-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
55 lines (48 loc) · 1.4 KB
/
_quarto.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
project:
type: website
output-dir: docs
website:
title: "Bayesian algorithms"
navbar:
left:
- href: index.qmd
text: Home
- about.qmd
sidebar:
style: "floating"
search: true
contents:
- section: "General methods"
contents:
- href: src/RWM.qmd
text: Random walk Metropolis
- href: src/RWM_ode.qmd
text: RWM on ODE
- href: src/DE.qmd
text: DE MCMC
- href: src/SMC.qmd
text: SMC
- href: src/Gibbs.qmd
text: Gibbs
- section: "State Space Models"
contents:
- href: src/particle_filter.qmd
text: Particle filter
- section: Logistic growth
href: src/logistic_growth.qmd
contents:
- href: src/logistic_growth_MCMC_wo_states_v1.qmd
text: MCMC without states v1
- href: src/logistic_growth_MCMC_wo_states_v2.qmd
text: MCMC without states v2
- href: src/logistic_growth_MCMC_wo_states_v3.qmd
text: MCMC without states v3
- href: src/logistic_growth_MCMC.qmd
text: MCMC
- href: src/logistic_growth_pMCMC.qmd
text: pMCMC
format:
html:
theme: flatly
css: styles.css
toc: true