1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
|
#' Prepare 3-D array for MCMC plots
#'
#' @noRd
#' @param x,pars,regex_pars,transformations Users's arguments to one of the
#' mcmc_* functions.
#' @return A 3-D (Iterations x Chains x Parameters) array.
#'
prepare_mcmc_array <- function(x,
pars = character(),
regex_pars = character(),
transformations = list()) {
if (posterior::is_draws(x)) {
x <- posterior::as_draws_array(x)
} else if (is_df_with_chain(x)) {
x <- df_with_chain2array(x)
} else if (is_chain_list(x)) {
# this will apply to mcmc.list and similar objects
x <- chain_list2array(x)
} else if (is.data.frame(x)) {
# data frame without Chain column
x <- as.matrix(x)
} else {
# try object's as.array method
x <- as.array(x)
}
stopifnot(is.matrix(x) || is.array(x))
if (is.array(x) && !(length(dim(x)) %in% c(2,3))) {
abort("Arrays should have 2 or 3 dimensions. See help('MCMC-overview').")
}
if (anyNA(x)) {
abort("NAs not allowed in 'x'.")
}
if (rlang::is_quosures(pars)) {
pars <- tidyselect_parameters(complete_pars = parameter_names(x),
pars_list = pars)
} else {
pars <- select_parameters(complete_pars = parameter_names(x),
explicit = pars,
patterns = regex_pars)
}
# possibly recycle transformations (apply same to all pars)
if (is.function(transformations) ||
(is.character(transformations) && length(transformations) == 1)) {
transformations <- rep(list(transformations), length(pars))
transformations <- set_names(transformations, pars)
}
if (is.matrix(x)) {
x <- x[, pars, drop=FALSE]
if (length(transformations)) {
x <- apply_transformations(x, transformations = transformations)
}
x <- array(x, dim = c(nrow(x), 1, ncol(x)))
} else {
x <- x[, , pars, drop = FALSE]
if (length(transformations)) {
x <- apply_transformations(x, transformations = transformations)
}
}
pars <- rename_transformed_pars(pars, transformations)
set_mcmc_dimnames(x, pars)
}
#' Explicit and/or regex parameter selection
#'
#' @noRd
#' @param explicit Character vector of selected parameter names.
#' @param patterns Character vector of regular expressions.
#' @param complete_pars Character vector of all possible parameter names.
#' @return Character vector of combined explicit and matched (via regex)
#' parameter names, unless an error is thrown.
#'
select_parameters <-
function(explicit = character(),
patterns = character(),
complete_pars = character()) {
stopifnot(is.character(explicit),
is.character(patterns),
is.character(complete_pars))
if (!length(explicit) && !length(patterns)) {
return(complete_pars)
}
if (length(explicit)) {
if (!all(explicit %in% complete_pars)) {
not_found <- which(!explicit %in% complete_pars)
abort(paste(
"Some 'pars' don't match parameter names:",
paste(explicit[not_found], collapse = ", "),
call. = FALSE
))
}
}
if (!length(patterns)) {
return(unique(explicit))
} else {
regex_pars <-
unlist(lapply(seq_along(patterns), function(j) {
grep(patterns[j], complete_pars, value = TRUE)
}))
if (!length(regex_pars)) {
abort("No matches for 'regex_pars'.")
}
}
unique(c(explicit, regex_pars))
}
#' Melt a 3-D array or matrix of MCMC draws
#'
#' @noRd
#' @param x An mcmc_array (from prepare_mcmc_array).
#' @param varnames,value.name,... Passed to reshape2::melt (array method).
#' @return A molten data frame.
#'
melt_mcmc <- function(x, ...) UseMethod("melt_mcmc")
#' @export
melt_mcmc.mcmc_array <- function(x,
varnames =
c("Iteration", "Chain", "Parameter"),
value.name = "Value",
as.is = TRUE,
...) {
stopifnot(is_mcmc_array(x))
long <- reshape2::melt(
data = x,
varnames = varnames,
value.name = value.name,
as.is = FALSE,
...)
long$Parameter <- factor(long$Parameter)
long
}
# If all chains are already merged
#' @export
melt_mcmc.matrix <- function(x,
varnames = c("Draw", "Parameter"),
value.name = "Value",
...) {
long <- reshape2::melt(
data = x,
varnames = varnames,
value.name = value.name,
as.is = FALSE,
...)
long$Parameter <- factor(long$Parameter)
long
}
#' Set dimnames of 3-D array
#' @noRd
#' @param x 3-D array
#' @param parnames Character vector of parameter names
#' @return x with a modified dimnames.
set_mcmc_dimnames <- function(x, parnames) {
stopifnot(is_3d_array(x))
dimnames(x) <- list(
Iteration = seq_len(nrow(x)),
Chain = seq_len(ncol(x)),
Parameter = parnames
)
structure(x, class = c(class(x), "mcmc_array"))
}
#' Convert 3-D array to matrix with chains merged
#'
#' @noRd
#' @param x A 3-D array (iter x chain x param)
#' @return A matrix with one column per parameter
#'
merge_chains <- function(x) {
xdim <- dim(x)
mat <- array(x, dim = c(prod(xdim[1:2]), xdim[3]))
colnames(mat) <- parameter_names(x)
mat
}
#' Check if an object is a data.frame with a chain index column
#'
#' @noRd
#' @param x object to check
#' @return TRUE or FALSE
is_df_with_chain <- function(x) {
is.data.frame(x) && any(tolower(colnames(x)) %in% "chain")
}
validate_df_with_chain <- function(x) {
stopifnot(is_df_with_chain(x))
x <- as.data.frame(x)
if (!is.null(x$chain)) {
if (is.null(x$Chain)) {
x$Chain <- x$chain
}
x$chain <- NULL
}
x$Chain <- as.integer(x$Chain)
x
}
# Convert data.frame with Chain variable to a 3-D array
df_with_chain2array <- function(x) {
x <- validate_df_with_chain(x)
chain <- x$Chain
n_chain <- length(unique(chain))
a <- x[, !colnames(x) %in% "Chain", drop = FALSE]
parnames <- colnames(a)
a <- as.matrix(a)
x <- array(NA, dim = c(ceiling(nrow(a) / n_chain), n_chain, ncol(a)))
for (j in seq_len(n_chain)) {
x[, j, ] <- a[chain == j,, drop=FALSE]
}
set_mcmc_dimnames(x, parnames)
}
#' Check if an object is a list (but not a data.frame) that contains
#' all 2-D objects
#' @noRd
#' @param x object to check
#' @return TRUE or FALSE
is_chain_list <- function(x) {
check1 <- !is.data.frame(x) && is.list(x)
dims <- try(sapply(x, function(chain) length(dim(chain))), silent=TRUE)
if (inherits(dims, "try-error")) {
return(FALSE)
}
check2 <- isTRUE(all(dims == 2)) # all elements of list should be matrices/2-D arrays
check1 && check2
}
validate_chain_list <- function(x) {
n_chain <- length(x)
for (i in seq_len(n_chain)) {
nms <- colnames(as.matrix(x[[i]]))
if (is.null(nms) || !all(nzchar(nms))) {
abort(paste(
"Some parameters are missing names.",
"Check the column names for the matrices in your list of chains."
))
}
}
if (n_chain > 1) {
n_iter <- sapply(x, nrow)
same_iters <- length(unique(n_iter)) == 1
if (!same_iters) {
abort("Each chain should have the same number of iterations.")
}
cnames <- sapply(x, colnames)
if (is.array(cnames)) {
same_params <- identical(cnames[, 1], cnames[, 2])
} else {
same_params <- length(unique(cnames)) == 1
}
if (!same_params) {
abort(paste(
"The parameters for each chain should be in the same order",
"and have the same names."
))
}
}
x
}
# Convert list of matrices to 3-D array
chain_list2array <- function(x) {
x <- validate_chain_list(x)
n_chain <- length(x)
if (n_chain == 1) {
n_iter <- nrow(x[[1]])
param_names <- colnames(x[[1]])
} else {
n_iter <- sapply(x, nrow)
cnames <- sapply(x, colnames)
param_names <- if (is.array(cnames))
cnames[, 1] else cnames
n_iter <- n_iter[1]
}
param_names <- unique(param_names)
n_param <- length(param_names)
out <- array(NA, dim = c(n_iter, n_chain, n_param))
for (i in seq_len(n_chain)) {
out[, i,] <- x[[i]]
}
set_mcmc_dimnames(out, param_names)
}
# Get parameter names from a 3-D array
parameter_names <- function(x) UseMethod("parameter_names")
#' @export
parameter_names.array <- function(x) {
stopifnot(is_3d_array(x))
dimnames(x)[[3]] %||% abort("No parameter names found.")
}
#' @export
parameter_names.default <- function(x) {
colnames(x) %||% abort("No parameter names found.")
}
#' @export
parameter_names.matrix <- function(x) {
colnames(x) %||% abort("No parameter names found.")
}
# Check if an object is a 3-D array
is_3d_array <- function(x) {
if (!is.array(x)) {
return(FALSE)
}
if (length(dim(x)) != 3) {
return(FALSE)
}
TRUE
}
# Check if an object is a 3-D array AND has correct dimension names
is_mcmc_array <- function(x) {
if (!is_3d_array(x)) {
return(FALSE)
}
if (!identical(names(dimnames(x)), c("Iteration", "Chain", "Parameter"))) {
return(FALSE)
}
TRUE
}
# Check if 3-D array has multiple chains
has_multiple_chains <- function(x) {
stopifnot(is_3d_array(x))
isTRUE(dim(x)[2] > 1)
}
# Check if 3-D array has multiple parameters
has_multiple_params <- function(x) {
stopifnot(is_3d_array(x))
isTRUE(dim(x)[3] > 1)
}
STOP_need_multiple_chains <- function(call. = FALSE) {
abort("This function requires multiple chains.")
}
# Validate that transformations match parameter names
validate_transformations <-
function(transformations = list(),
pars = character()) {
if (is.null(names(transformations))) {
abort("'transformations' must be a _named_ list.")
} else if (any(!nzchar(names(transformations)))) {
abort("Each element of 'transformations' must have a name.")
}
transformations <- lapply(transformations, match.fun)
if (!all(names(transformations) %in% pars)) {
not_found <- which(!names(transformations) %in% pars)
abort(paste(
"Some names(transformations) don't match parameter names:",
paste(names(transformations)[not_found], collapse = ", ")
))
}
transformations
}
#' Apply transformations to matrix or 3-D array of parameter draws
#'
#' @noRd
#' @param x A matrix or 3-D array of draws
#' @param transformation User's 'transformations' argument to one of the mcmc_*
#' functions.
#' @return x, with tranformations having been applied to some parameters.
#'
apply_transformations <- function(x, ...) {
UseMethod("apply_transformations")
}
#' @export
apply_transformations.matrix <- function(x, ..., transformations = list()) {
pars <- colnames(x)
x_transforms <- validate_transformations(transformations, pars)
for (p in names(x_transforms)) {
x[, p] <- x_transforms[[p]](x[, p])
}
x
}
#' @export
apply_transformations.array <- function(x, ..., transformations = list()) {
stopifnot(length(dim(x)) == 3)
pars <- dimnames(x)[[3]]
x_transforms <- validate_transformations(transformations, pars)
for (p in names(x_transforms)) {
x[, , p] <- x_transforms[[p]](x[, , p])
}
x
}
rename_transformed_pars <- function(pars, transformations) {
stopifnot(is.character(pars), is.list(transformations))
has_names <- sapply(transformations, is.character)
if (any(has_names)) {
nms <- names(which(has_names))
for (nm in nms) {
pars[which(pars == nm)] <-
paste0(
transformations[[nm]], "(",
pars[which(pars == nm)], ")"
)
}
}
if (any(!has_names)) {
nms <- names(which(!has_names))
pars[pars %in% nms] <- paste0("t(", pars[pars %in% nms], ")")
}
pars
}
num_chains <- function(x, ...) UseMethod("num_chains")
num_iters <- function(x, ...) UseMethod("num_iters")
num_params <- function(x, ...) UseMethod("num_params")
#' @export
num_params.mcmc_array <- function(x, ...) dim(x)[3]
#' @export
num_chains.mcmc_array <- function(x, ...) dim(x)[2]
#' @export
num_iters.mcmc_array <- function(x, ...) dim(x)[1]
#' @export
num_params.data.frame <- function(x, ...) {
stopifnot("Parameter" %in% colnames(x))
length(unique(x$Parameter))
}
#' @export
num_chains.data.frame <- function(x, ...) {
stopifnot("Chain" %in% colnames(x))
length(unique(x$Chain))
}
#' @export
num_iters.data.frame <- function(x, ...) {
cols <- colnames(x)
stopifnot("Iteration" %in% cols || "Draws" %in% cols)
if ("Iteration" %in% cols) {
n <- length(unique(x$Iteration))
} else {
n <- length(unique(x$Draw))
}
n
}
|