# Pick a results file to load
simDir <- "tests/sim/20210429-sim/"
load(file.path(simDir, "20210517-results-countyState.Rdata"))
est = colMeans(OUT)
estv = c(est)
# ---- True Data ----
load(file.path(simDir, "true-table.Rdata")) # Loads array A
Av <- c(A)
# ---- Format ----
M_orig <- data.frame(true = Av, all = coefFull, none = coefEmty)
M <- M_orig %>%
mutate(allErr = true - all) %>%
mutate(noneErr= true - none)
# ---- Results ----
summary(M)
boxplot(M[, 1:3])
boxplot(M[, 4:5])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.