-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.Rmd
171 lines (117 loc) · 4.19 KB
/
index.Rmd
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
---
title: "MCMC Algorithms"
date: <span style="color:white">`r Sys.Date()`</span>
output:
rmdformats::material:
theme: sandstone
html_document:
theme: sandstone
self_contained: TRUE
toc: yes
toc_float: yes
toc_depth: 1
link-citations: yes
css: [../css/notebooks/standard_html.css, ld_mcmc.css]
---
```{r setup, include=FALSE}
library(tint); library(tufte)
# invalidate cache when the package version changes
knitr::opts_chunk$set(tidy = FALSE, cache.extra = packageVersion('tint'))
options(htmltools.dir.version = FALSE)
```
# Preface
The following is a list of Markov Chain Monte Carlo algorithms that was formerly found on the now-defunct website bayesian-inference.com. That site was also home to the once useful <span class="pack">LaplacesDemon</span> R package, which was evidently abandoned, but has recently been revived [here](https://github.com/LaplacesDemonR/LaplacesDemon), and is even available on CRAN again ([link](https://cran.r-project.org/package=LaplacesDemon)). The ambitious goal of <span class="pack">LaplacesDemon</span> was to provide a complete Bayesian inference environment within R. When first getting into Bayesian analysis in R, I found its vignettes clear and the website a nice resource. The vignettes are available on CRAN and below, and reflect current development.
One of the useful things on the LD website that I always meant to get back to and spend more time with was the list of algorithms that the package could utilize. As others might also be interested, I have reproduced that here, culled from the depths of the [Wayback Machine](http://www.archive.org). While some things might be specific to the R package, the considerations and comparisons, as well as relative strengths, weaknesses and other description, as well as references, are informative in my opinion. The references are probably dated to around 2014, and may not be entirely as accurate as they were then, but they appear to have been very up to date to that point. I also appreciate the historical context provided here and there, and while I think the descriptions will be fine for getting a general sense of the algorithms for some time, they obviously will not reflect any recent developments.
In reproducing this, I have tried to keep an eye out for things like subscripts and other notation, but didn't spend a lot of time on that. I also cleaned up any typos and other issues I may have come across. I have no real intention doing much more with this, I just provide it out of my own interest. All credit beyond this preface goes to Byron Hall and Statisticat LLC.
[Bayesian Inference](BayesianInference.pdf)
[Model Examples](Examples.pdf)
[Single Page version](index_onepage.html) (easier to search; possibly better for small screens)
[Originals](LaplacesDemonDescriptions.7z) (zipped html files; rmd files for this document can be found [here](https://github.com/m-clark/docs/tree/master/ld_mcmc))
<br><br>
<img src="LaplacesDemon.png" style="display:block; margin: 0 auto;">
```{r child='mcmc.Rmd'}
```
```{r child='admg.Rmd'}
```
```{r child='afss.Rmd'}
```
```{r child='agg.Rmd'}
```
```{r child='ahmc.Rmd'}
```
```{r child='aies.Rmd'}
```
```{r child='am.Rmd'}
```
```{r child='amm.Rmd'}
```
```{r child='amwg.Rmd'}
```
```{r child='charm.Rmd'}
```
```{r child='demc.Rmd'}
```
```{r child='dram.Rmd'}
```
```{r child='drm.Rmd'}
```
```{r child='ess.Rmd'}
```
```{r child='gg.Rmd'}
```
```{r child='gibbs.Rmd'}
```
```{r child='harm.Rmd'}
```
```{r child='hmc.Rmd'}
```
```{r child='hmcda.Rmd'}
```
```{r child='im.Rmd'}
```
```{r child='inca.Rmd'}
```
```{r child='mala.Rmd'}
```
```{r child='mcmcmc.Rmd'}
```
```{r child='mtm.Rmd'}
```
```{r child='mwg.Rmd'}
```
```{r child='nuts.Rmd'}
```
```{r child='ohss.Rmd'}
```
```{r child='pcn.Rmd'}
```
```{r child='ram.Rmd'}
```
```{r child='rdmh.Rmd'}
```
```{r child='refractive.Rmd'}
```
```{r child='rj.Rmd'}
```
```{r child='rss.Rmd'}
```
```{r child='rwm.Rmd'}
```
```{r child='samwg.Rmd'}
```
```{r child='sgld.Rmd'}
```
```{r child='slice.Rmd'}
```
```{r child='smwg.Rmd'}
```
```{r child='thmc.Rmd'}
```
```{r child='twalk.Rmd'}
```
```{r child='uess.Rmd'}
```
```{r child='usamwg.Rmd'}
```
```{r child='usmwg.Rmd'}
```