The dynamite
R
package provides an easy-to-use interface for Bayesian inference of
complex panel (time series) data comprising of multiple measurements per
multiple individuals measured in time via dynamic multivariate panel
models (DMPM). The main features distinguishing the package and the
underlying methodology from many other approaches are:
rstan
and cmdstanr
backends are supported, with both parallel chains and within-chain
parallelization.The dynamite
package is developed with the support of
the Research Council of Finland grant 331817 (PREDLIFE). For further
information on DMPMs and the dynamite
package, see the
related papers:
dynamite
: An R Package
for Dynamic Multivariate Panel Models. (arXiv preprint)You can install the most recent stable version of
dynamite
from CRAN or the
development version from R-universe by running one the
following lines:
install.packages("dynamite")
install.packages("dynamite", repos = "https://ropensci.r-universe.dev")
A single-channel model with time-invariant effect of z
,
time-varying effect of x
, lagged value of the response
variable y
and a group-specific random intercepts:
set.seed(1)
library("dynamite")
<- dynamite(
gaussian_example_fit obs(y ~ -1 + z + varying(~ x + lag(y)) + random(~1), family = "gaussian") +
splines(df = 20),
data = gaussian_example, time = "time", group = "id",
iter = 2000, chains = 2, cores = 2, refresh = 0
)
Summary of the model:
print(gaussian_example_fit)
#> Model:
#> Family Formula
#> y gaussian y ~ -1 + z + varying(~x + lag(y)) + random(~1)
#>
#> Correlated random effects added for response(s): y
#>
#> Data: gaussian_example (Number of observations: 1450)
#> Grouping variable: id (Number of groups: 50)
#> Time index variable: time (Number of time points: 30)
#>
#> NUTS sampler diagnostics:
#>
#> No divergences, saturated max treedepths or low E-BFMIs.
#>
#> Smallest bulk-ESS: 651 (sigma_nu_y_alpha)
#> Smallest tail-ESS: 853 (sigma_nu_y_alpha)
#> Largest Rhat: 1.002 (beta_y_z)
#>
#> Elapsed time (seconds):
#> warmup sample
#> chain:1 7.851 5.239
#> chain:2 8.104 4.531
#>
#> Summary statistics of the time- and group-invariant parameters:
#> # A tibble: 6 × 10
#> variable mean median sd mad q5 q95 rhat ess_bulk ess_tail
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 beta_y_z 1.97 1.97 0.0118 0.0119 1.95 1.99 1.00 3946. 1727.
#> 2 sigma_nu_y… 0.0946 0.0938 0.0116 0.0108 0.0772 0.115 1.00 651. 853.
#> 3 sigma_y 0.198 0.198 0.00371 0.00378 0.192 0.204 1.00 2734. 1459.
#> 4 tau_alpha_y 0.213 0.207 0.0481 0.0456 0.146 0.302 1.00 1797. 1634.
#> 5 tau_y_x 0.362 0.352 0.0683 0.0607 0.269 0.488 1.00 2600. 1492.
#> 6 tau_y_y_la… 0.107 0.104 0.0204 0.0193 0.0777 0.144 0.999 2118. 1899.
Posterior estimates of time-varying effects:
plot(gaussian_example_fit, types = c("alpha", "delta"), scales = "free")
And group-specific intercepts (for first 10 groups):
plot(gaussian_example_fit, types = "nu", groups = 1:10)
Traceplots and density plots for time-invariant parameters:
plot(gaussian_example_fit, plot_type = "trace", types = "beta")
Posterior predictive samples for the first 4 groups (using the samples based on the posterior distribution of the model parameters and observed data on the first time point):
library("ggplot2")
<- predict(gaussian_example_fit, n_draws = 100)
pred |>
pred ::filter(id < 5) |>
dplyrggplot(aes(time, y_new, group = .draw)) +
geom_line(alpha = 0.25) +
# observed values
geom_line(aes(y = y), colour = "tomato") +
facet_wrap(~id) +
theme_bw()
Visualizing the model structure as a DAG (a snapshot at time
t
):
plot(gaussian_example_fit, plot_type = "dag", show_covariates = TRUE)
For more examples, see the package vignettes and the blog post about dynamite.
dynamite
package uses Stan via rstan
and cmdstanr
(see also https://mc-stan.org), which is a probabilistic
programming language for general Bayesian modelling.brms
package also uses Stan, and can be used to fit various complex
multilevel models.tvReg
.
The tvem
package provides similar functionality for gaussian, binomial and
poisson responses with mgcv
backend.plm
contains various methods to estimate linear models for panel data, e.g.,
fixed effect models.lavaan
provides tools for structural equation modeling, and as such can be used
to model various panel data models as well.Contributions are very welcome, see CONTRIBUTING.md for general guidelines.