We can get a one-line summary of the model with glance

We can also get a one-coefficient per row summary using tidy:

Now we can neaten up the draws with mcmc_to_dt to facilitate plotting


library(ggplot2)

ggplot(neat_draws[parameter == "int"],
       aes(x = iteration,
           y = value,
           colour = chain)) + 
    geom_line()


ggplot(neat_draws[parameter == "sd"],
       aes(x = value,
           colour = chain)) + 
    geom_density()


ggplot(neat_draws[parameter == "coef"],
       aes(x = value,
               colour = chain)) + 
    geom_density()

Or we can use some examples from bayesplot: