bayesplot v1.4.0
bayesplot v1.4.0 is now on CRAN.
Until CRAN binaries are built (usually a few days) you can install the update using
install.packages("bayesplot", type = "source", repos = "https://cran.rstudio.com/")
or by installing from GitHub using
devtools::install_github("stan-dev/bayesplot", ref = "v1.4.0", build_vignettes = TRUE)
Release notes
(GitHub issue/PR numbers in parentheses)
- New plotting function
mcmc_parcoord()
for parallel coordinates plots of
MCMC draws (optionally including HMC/NUTS diagnostic information). (#108) mcmc_scatter
gains annp
argument for specifying NUTS parameters, which
allows highlighting divergences in the plot. (#112)- New functions with names ending with suffix
_data
don't make the plots,
they just return the data prepared for plotting (more of these to come in
future releases): ppc_stat_grouped()
,ppc_stat_freqpoly_grouped()
gain afacet_args
argument for controlling ggplot2 faceting (many of themcmc_
functions
already have this).- The
divergences
argument tomcmc_trace()
has been deprecated in favor
ofnp
(NUTS parameters) to match the other functions that have annp
argument. - Fixed an issue where duplicated rhat values would break
mcmc_rhat()
(#105).