redist.plot.trace {redist} | R Documentation |
Make a traceplot for a summary statistic
Description
For a statistic in a redist_plans
object,
make a traceplot showing the evolution of the statistic over MCMC iterations.
Usage
redist.plot.trace(plans, qty, district = 1L, ...)
Arguments
plans |
the |
qty |
|
district |
for |
... |
passed on to |
Value
A ggplot
Examples
library(dplyr)
data(iowa)
iowa_map <- redist_map(iowa, existing_plan = cd_2010, pop_tol = 0.05)
plans <- redist_mergesplit_parallel(iowa_map, nsims = 200, chains = 2, silent = TRUE) %>%
mutate(dem = group_frac(iowa_map, dem_08, dem_08 + rep_08)) %>%
number_by(dem)
redist.plot.trace(plans, dem, district = 1)
[Package redist version 4.2.0 Index]