# generally useful packages
library(tidyverse)
library(marginaleffects)
library(modelsummary)
library(ggrepel)
# for fitting hierarchical models
library(lme4)
library(brms) # see also rstanarm::stan_lmer()
library(rstan)
# for post-processing simulations
library(tidybayes)
# handle future conflicts
# - MASS v. dplyr for filter()
conflicted::conflict_prefer("filter", "dplyr")
# - MASS v. dplyr for select()
conflicted::conflict_prefer("select", "dplyr")



