Skip to content

Commit

Permalink
Merge branch 'master' into convert-list-of-matrices-to-draws_array
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabry authored Dec 17, 2024
2 parents e0610a4 + a6ab390 commit 55e18ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 26 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: posterior
Title: Tools for Working with Posterior Distributions
Version: 1.6.0.9000
Date: 2024-12-02
Version: 1.6.0
Date: 2024-06-28
Authors@R: c(person("Paul-Christian", "Bürkner", email = "[email protected]", role = c("aut", "cre")),
person("Jonah", "Gabry", email = "[email protected]", role = c("aut")),
person("Matthew", "Kay", email = "[email protected]", role = c("aut")),
Expand Down
6 changes: 0 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# posterior 1.6.0+

### Enhancements

* Convert lists of matrices to `draws_array` objects.

# posterior 1.6.0

### Enhancements
Expand Down
9 changes: 4 additions & 5 deletions R/as_draws.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,10 @@ closest_draws_format <- function(x) {
out <- "rvars"
} else if (is_draws_list_like(x)) {
out <- "list"
} else {
stop_no_call(
"Don't know how to transform an object of class '",
class(x)[1L], "' to any supported draws format."
)
}
else {
stop_no_call("Don't know how to transform an object of class ",
"'", class(x)[1L], "' to any supported draws format.")
}
paste0("draws_", out)
}
Expand Down
15 changes: 2 additions & 13 deletions R/as_draws_array.R
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,7 @@ as_draws_array.mcmc.list <- function(x, ...) {

# try to convert any R object into a 'draws_array' object
.as_draws_array <- function(x) {
if (is_matrix_list_like(x)) {
x <- as_array_matrix_list(x)
} else {
x <- as.array(x)
}
x <- as.array(x)
new_dimnames <- list(iteration = NULL, chain = NULL, variable = NULL)
if (!is.null(dimnames(x)[[3]])) {
new_dimnames[[3]] <- dimnames(x)[[3]]
Expand Down Expand Up @@ -181,14 +177,7 @@ is_draws_array <- function(x) {

# is an object looking like a 'draws_array' object?
is_draws_array_like <- function(x) {
is.array(x) && length(dim(x)) == 3L ||
is_matrix_list_like(x)
}

# is an object likely a list of matrices?
# such an object can be easily converted to a draws_array
is_matrix_list_like <- function(x) {
is.list(x) && length(dim(x[[1]])) == 2L
is.array(x) && length(dim(x)) == 3L
}

#' Extract parts of a `draws_array` object
Expand Down

0 comments on commit 55e18ab

Please sign in to comment.