mcmc-intervals.R uses select(-c("col")) for deselection in two places (lines 759, 845), which is deprecated in dplyr 1.0.0+. The correct approach is to use all_of():
# deprecated
select(-c("center"), "m")
# correct
select(-all_of("center"), all_of("m"))
mcmc-intervals.Rusesselect(-c("col"))for deselection in two places (lines 759, 845), which is deprecated in dplyr 1.0.0+. The correct approach is to useall_of():