-
Notifications
You must be signed in to change notification settings - Fork 206
/
cmdstanr_demo.R
468 lines (361 loc) · 16.5 KB
/
cmdstanr_demo.R
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#' ---
#' title: "Bayesian data analysis - CmdStanR demos"
#' author: "Aki Vehtari, Markus Paasiniemi"
#' date: "First version 2017-07-17. Last modified `r format(Sys.Date())`."
#' output:
#' html_document:
#' fig_caption: yes
#' toc: TRUE
#' toc_depth: 2
#' number_sections: TRUE
#' toc_float:
#' smooth_scroll: FALSE
#' theme: readable
#' code_download: true
#' ---
#' # Setup {.unnumbered}
#+ setup, include=FALSE
knitr::opts_chunk$set(cache=FALSE, message=FALSE, error=FALSE, warning=TRUE, comment=NA, out.width='95%')
#' **Load packages**
library(cmdstanr)
# If running in Aalto JupyterHub the path should automatically be set to
# '/coursedata/cmdstan'
options(mc.cores = 1)
library(posterior)
options(posterior.num_args=list(sigfig=2)) # by default summaries with 2 significant digits
library(loo)
library(tidyr)
library(dplyr)
options(pillar.neg=FALSE)
library(ggplot2)
library(gridExtra)
library(bayesplot)
library(ggdist)
theme_set(bayesplot::theme_default(base_family = "sans"))
library(rprojroot)
root<-has_file(".BDA_R_demos_root")$make_fix_file()
SEED <- 48927 # set random seed for reproducability
#' # Introduction
#'
#' This notebook contains several examples of how to use [Stan](https://mc-stan.org) in R with __cmdstanr__. This notebook assumes basic knowledge of Bayesian inference and MCMC. The Stan models are stored in separate .stan-files. The examples are related to [Bayesian data analysis course](https://avehtari.github.io/BDA_course_Aalto/).
#'
#' # Bernoulli model
#'
#' Toy data with sequence of failures (0) and successes (1). We would like to learn about the unknown probability of success.
data_bern <- list(N = 10, y = c(1, 1, 1, 0, 1, 1, 1, 0, 1, 0))
#' Bernoulli model with a proper Beta(1,1) (uniform) prior
code_bern <- root("demos_rstan", "bern.stan")
writeLines(readLines(code_bern))
#' Sample form the posterior and show the summary
#+ results='hide'
mod_bern <- cmdstan_model(stan_file = code_bern)
fit_bern <- mod_bern$sample(data = data_bern, seed = SEED, refresh=1000)
fit_bern$summary()
#' Plot a histogram of the posterior draws with bayesplot (uses ggplot)
draws <- fit_bern$draws(format = "df")
mcmc_hist(draws, pars='theta') + xlim(c(0,1))
#' Plot a dots plot of the posterior draws with ggplot + ggdist
#+ warning=FALSE
draws |>
ggplot(aes(x=theta)) +
stat_dotsinterval() +
xlim(c(0,1))
#' # Binomial model
#'
#' Instead of sequence of 0's and 1's, we can summarize the data with the number of experiments and the number successes:
data_bin <- list(N = 10, y = 7)
#' And then we use Binomial model with Beta(1,1) prior for the probability of success.
code_binom <- root("demos_rstan","binom.stan")
writeLines(readLines(code_binom))
#' Sample from the posterior and plot the posterior. The histogram should look similar as in the Bernoulli case.
#'
#+ results='hide'
mod_bin <- cmdstan_model(stan_file = code_binom)
fit_bin <- mod_bin$sample(data = data_bin, seed = SEED, refresh=1000)
fit_bin$summary()
draws <- fit_bin$draws(format = "df")
mcmc_hist(draws, pars = 'theta') + xlim(c(0,1))
#' Re-run the model with a new data. The compiled Stan program is re-used making the re-use faster.
#'
#+ results='hide'
data_bin <- list(N = 100, y = 70)
fit_bin <- mod_bin$sample(data = data_bin, seed = SEED, refresh=1000)
fit_bin$summary()
draws <- fit_bin$draws(format = "df")
mcmc_hist(draws, pars = 'theta', binwidth = 0.01) + xlim(c(0,1))
#' ## Explicit transformation of variables
#'
#' In the above examples the probability of success $\theta$ was declared as
#'
#' `real<lower=0,upper=1> theta;`
#'
#' Stan makes automatic transformation of the variable to the unconstrained space using logit transofrmation for interval constrained and log transformation for half constraints.
#'
#' The following example shows how we can also make an explicit transformation and use binomial_logit function which takes the unconstrained parameter as an argument and uses logit transformation internally. This form can be useful for better numerical stability.
code_binomb <- root("demos_rstan", "binomb.stan")
writeLines(readLines(code_binomb))
#' Here we have used Gaussian prior in the unconstrained space, which produces close to uniform prior for theta.
#'
#' Sample from the posterior and plot the posterior. The histogram should look similar as with the previous models.
#'
#+ results='hide'
data_bin <- list(N = 100, y = 70)
mod_binb <- cmdstan_model(stan_file = code_binomb)
fit_binb <- mod_bin$sample(data = data_bin, seed = SEED, refresh=1000)
fit_binb$summary()
draws <- fit_binb$draws(format = "df")
mcmc_hist(draws, pars = 'theta', binwidth = 0.01) + xlim(c(0,1))
#'
#' # Comparison of two groups with Binomial
#'
#' An experiment was performed to estimate the effect of beta-blockers on mortality of cardiac patients. A group of patients were randomly assigned to treatment and control groups:
#'
#' - out of 674 patients receiving the control, 39 died
#' - out of 680 receiving the treatment, 22 died
#'
#' Data:
data_bin2 <- list(N1 = 674, y1 = 39, N2 = 680, y2 = 22)
#' To analyse whether the treatment is useful, we can use Binomial model for both groups and compute odds-ratio:
code_binom2 <- root("demos_rstan", "binom2.stan")
writeLines(readLines(code_binom2))
#' Sample from the posterior and plot the posterior
#+ results='hide'
mod_bin2 <- cmdstan_model(stan_file = code_binom2)
fit_bin2 <- mod_bin2$sample(data = data_bin2, seed = SEED, refresh=1000)
fit_bin2$summary()
#' Histogram
#+ warning=FALSE
draws <- fit_bin2$draws(format = "df")
mcmc_hist(draws, pars = 'oddsratio') +
geom_vline(xintercept = 1) +
scale_x_continuous(breaks = c(seq(0.25,1.5,by=0.25)))
#' Dots plot with median and 66% and 95% intervals
#+ warning=FALSE
draws |>
ggplot(aes(x=oddsratio)) +
geom_dotsinterval() +
geom_vline(xintercept = 1) +
scale_x_continuous(breaks = c(seq(0.25,1.5,by=0.25)))+
labs(x='Odds ratio', y='')
#' Probability (and corresponding MCSE) that oddsratio<1
draws |>
mutate_variables(p_oddsratio_lt_1 = as.numeric(oddsratio<1)) |>
subset_draws("p_oddsratio_lt_1") |>
summarise_draws(prob=mean, MCSE=mcse_mean)
#' # Linear Gaussian model
#'
#' The following file has Kilpisjärvi summer month temperatures 1952-2022
#' (data by Finnish Meteorological Institute, CC-BY 4.0).
data_kilpis <- read.delim(root("demos_rstan","kilpisjarvi-summer-temp-2022.csv"), sep = ";")
data_lin <-list(N = nrow(data_kilpis),
x = data_kilpis$year,
xpred = 2016,
y = data_kilpis[,5])
#' Plot the data
ggplot() +
geom_point(aes(x, y), data = data.frame(data_lin), size = 1) +
labs(y = 'Summer temp. @Kilpisjärvi', x= "Year") +
guides(linetype = "none")
#' To analyse whether the average summer month temperature is rising, we use a linear model with Gaussian model for the unexplained variation.
#'
#' ## Gaussian linear model with adjustable priors
#'
#' The folloing Stan code allows also setting hyperparameter values as data allowing easier way to use different priors in different analyses:
code_lin <- root("demos_rstan", "lin.stan")
writeLines(readLines(code_lin))
#' Create another list with data and priors
data_lin_priors <- c(list(
pmualpha = mean(unlist(data_kilpis[,5])), # centered
psalpha = 100, # weakly informative
pmubeta = 0, # a priori incr. and decr. as likely
psbeta = (.1--.1)/6, # avg temp prob does does not incr. more than a degree per 10 years
pssigma = 1), # total variation in summer average temperatures is less +-3 degrees
data_lin)
#' Run Stan
#+ results='hide'
mod_lin <- cmdstan_model(stan_file = code_lin)
fit_lin <- mod_lin$sample(data = data_lin_priors, seed = SEED, refresh=1000)
#' Stan gives a warning: There were X transitions after warmup that exceeded the maximum treedepth.
#'
#' We can check the generic convergence diagnostics as follows
fit_lin$summary()
#' We can check the HMC specific diagnostics as follows
#+ message=TRUE
fit_lin$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' The high number of max treedepth exceedence is due to high posterior dependency,
#' which in this case reduces efficiency, but doesn't invalidate the results
draws_lin <- fit_lin$draws(format = "df")
draws_lin |>
mcmc_scatter(pars=c("alpha","beta"))
#'
#' Compute the probability that the summer temperature is increasing.
#+ warning=FALSE
mean(draws_lin[,"beta"]>0) # probability that beta > 0
#' Plot the data, the model fit and prediction for year 2016.
#+ warning=FALSE
mu <- draws_lin |>
as_draws_df() |>
as_tibble() |>
select(starts_with("mu")) |>
apply(2, quantile, c(0.05, 0.5, 0.95)) |>
t() %>%
data.frame(x = data_lin$x, .) |>
gather(pct, y, -x)
pfit <- ggplot() +
geom_point(aes(x, y), data = data.frame(data_lin), size = 1) +
geom_line(aes(x, y, linetype = pct), data = mu, color = 'red') +
scale_linetype_manual(values = c(2,1,2)) +
labs(y = 'Summer temp. @Kilpisjärvi', x= "Year") +
guides(linetype = "none")
phist <- mcmc_hist(draws_lin, pars = c('beta','sigma','ypred'))
grid.arrange(pfit, phist, nrow = 2)
#' ## Gaussian linear model with standardized data
#'
#' In the above we used the unnormalized data and as x values are far away from zero, this will cause very strong posterior dependency between alpha and beta (did you use ShinyStan for the above model?). The strong posterior dependency can be removed by normalizing the data to have zero mean. The following Stan code makes it in Stan. In generated quantities we do correspnding transformation back to the original scale.
code_lin_std <- root("demos_rstan", "lin_std.stan")
writeLines(readLines(code_lin_std))
#+ results='hide'
mod_lin_std <- cmdstan_model(stan_file = code_lin_std)
fit_lin_std <- mod_lin_std$sample(data = data_lin, seed = SEED, refresh=1000)
#' Now there were no warnings. We can check diagnostics with the following commands.
#+ message=TRUE
fit_lin_std$summary()
fit_lin_std$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' We see that there are no warnings by diagnostics and ESS's are higher than with the previous case with non-standardized data. The posterior has no high dependency.
#'
draws_lin_std <- fit_lin_std$draws(format = "df")
draws_lin_std |>
mcmc_scatter(pars=c("alpha","beta"))
#'
#' Next we check that we get similar probability for beta>0.
#+ warning=FALSE
draws_lin_std <- fit_lin_std$draws(format = "df")
mean(draws_lin_std[,"beta"]>0) # probability that beta > 0
#' # Linear Student's $t$ model.
#'
#' The temperatures used in the above analyses are averages over three months, which makes it more likely that they are normally distributed, but there can be extreme events in the feather and we can check whether more robust Student's $t$ observation model woul give different results.
code_lin_std_t <- root("demos_rstan", "lin_std_t.stan")
writeLines(readLines(code_lin_std_t))
#+ results='hide'
mod_lin_std_t <- cmdstan_model(stan_file = code_lin_std_t)
fit_lin_std_t <- mod_lin_std_t$sample(data = data_lin, seed = SEED, refresh=1000)
#' We get some warnings, but these specific warnings are not critical if counts are small as here.
#'
#' Let's examine further diagnostics.
#+ message=TRUE
fit_lin_std_t$summary()
fit_lin_std_t$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' We get similar diagnostics as for the linear Gaussian model with non-standardised data.
#'
#' Compute the probability that the summer temperature is increasing.
#+ warning=FALSE
draws_lin_std_t <- fit_lin_std_t$draws(format = "df")
mean(draws_lin_std_t[,"beta"]>0) # probability that beta > 0
#' We get similar probability as with Gaussian obervation model.
#'
#'
#' Plot data and the model fit
#+ warning=FALSE
mu <- draws_lin_std_t |>
as_tibble() |>
select(starts_with("mu[")) |>
apply(2, quantile, c(0.05, 0.5, 0.95)) |>
t() %>%
data.frame(x = data_lin$x, .) |>
gather(pct, y, -x)
pfit <- ggplot() +
geom_point(aes(x, y), data = data.frame(data_lin), size = 1) +
geom_line(aes(x, y, linetype = pct), data = mu, color = 'red') +
scale_linetype_manual(values = c(2,1,2)) +
labs(y = 'Summer temp. @Kilpisjärvi', x= "Year") +
guides(linetype = "none")
phist <- mcmc_hist(draws_lin_std_t, pars = c('beta','sigma','ypred'))
grid.arrange(pfit, phist, nrow = 2)
#' We see also that the marginal posterior of nu is wide with lot of mass for values producing distrbution really close to Gaussian.
#'
#' # Pareto-smoothed importance-sampling leave-one-out cross-validation (PSIS-LOO)
#'
#' We can use leave-one-out cross-validation to compare the expected predictive performance. For the following lines to work, the log-likelihood needs to be evaluated in the stan code. For an example, see lin.stan and [Computing approximate leave-one-out cross-validation usig PSIS-LOO](http://mc-stan.org/loo/articles/loo2-with-rstan.html).
# At this moment there is not yet method for cmdstanr fit, so we use this helper
loo_lin_std <- fit_lin_std$loo()
loo_lin_std_t <- fit_lin_std_t$loo()
loo_compare(loo_lin_std, loo_lin_std_t)
#' There is no practical difference between Gaussian and Student's $t$ observation model for this data.
#'
#'
#' # Comparison of $k$ groups with hierarchical models
#'
#' Let's compare the temperatures in three summer months.
data_grp <-list(N = 3*nrow(data_kilpis[,]),
K = 3,
x = rep(1:3, nrow(data_kilpis[,])),
y = c(t(data_kilpis[,2:4])))
#' ## Common variance (ANOVA) model
code_grp_aov <- root("demos_rstan", "grp_aov.stan")
writeLines(readLines(code_grp_aov))
#' Fit the model
#+ results='hide'
mod_grp <- cmdstan_model(stan_file = code_grp_aov)
fit_grp <- mod_grp$sample(data = data_grp, seed = SEED, refresh=1000)
fit_grp$summary()
fit_grp$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' ## Common variance and hierarchical prior for mean.
#'
#' Results do not differ much from the previous, because there is only
#' few groups and quite much data per group, but this works as an example of a hierarchical model.
code_grp_prior_mean <- root("demos_rstan", "grp_prior_mean.stan")
writeLines(readLines(code_grp_prior_mean))
#' Fit the model
#+ results='hide'
mod_grp <- cmdstan_model(stan_file = code_grp_prior_mean)
fit_grp <- mod_grp$sample(data = data_grp, seed = SEED, refresh=1000)
fit_grp$summary()
fit_grp$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' We got a small number of divergences, so we increase
#' `adapt_delta=0.95`. Note that thisis useful only in case of small
#' number of divergences, and increasing `adapt_delta>0.99` doesn't
#' usually make sense, and in such cases there is need to investigate the
#' identifiability or parameter transformations.
#+ results='hide'
mod_grp <- cmdstan_model(stan_file = code_grp_prior_mean)
fit_grp <- mod_grp$sample(data = data_grp, seed = SEED, refresh=1000, adapt_delta=0.999)
fit_grp$summary()
fit_grp$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' ## Unequal variance and hierarchical prior for mean and variance
code_grp_prior_mean_var <- root("demos_rstan", "grp_prior_mean_var.stan")
writeLines(readLines(code_grp_prior_mean_var))
#' Fit the model
#+ results='hide'
mod_grp <- cmdstan_model(stan_file = code_grp_prior_mean_var)
fit_grp <- mod_grp$sample(data = data_grp, seed = SEED, refresh=1000)
fit_grp$summary()
fit_grp$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' We got a small number of divergences, so we increase
#' `adapt_delta=0.95`. Note that thisis useful only in case of small
#' number of divergences, and increasing `adapt_delta>0.99` doesn't
#' usually make sense, and in such cases there is need to investigate the
#' identifiability or parameter transformations.
#+ results='hide'
mod_grp <- cmdstan_model(stan_file = code_grp_prior_mean_var)
fit_grp <- mod_grp$sample(data = data_grp, seed = SEED, refresh=1000, adapt_delta=0.95);
fit_grp$summary()
fit_grp$diagnostic_summary(diagnostics = c("divergences", "treedepth"))
#' Plot the results
#+ warning=FALSE
temps <- fit_grp$draws(format = "df") |>
as_tibble() |>
select(starts_with("mu[")) |>
setNames(c('June','July','August'))
mcmc_areas(temps) + xlab('Temperature')
#' Probabilities that June is hotter than July, June is hotter than August
#' and July is hotter than August:
#+ warning=FALSE
paste('p(TempJun > TempJul) = ', mean(temps$June > temps$July))
paste('p(TempJun > TempAug) = ', mean(temps$June > temps$August))
paste('p(TempJul > TempAug) = ', mean(temps$July > temps$August))
#' <br />
#'
#' # Licenses {.unnumbered}
#'
#' * Code © 2017-2020, Aki Vehtari, 2017 Markus Paasiniemi, licensed under BSD-3.
#' * Text © 2017-2020, Aki Vehtari, licensed under CC-BY-NC 4.0.