Skip to content

Commit

Permalink
fix issue #1540
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-buerkner committed Sep 14, 2023
1 parent 2155a6f commit 3e47553
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Package: brms
Encoding: UTF-8
Type: Package
Title: Bayesian Regression Models using 'Stan'
Version: 2.20.2
Date: 2023-09-09
Version: 2.20.3
Date: 2023-09-14
Authors@R:
c(person("Paul-Christian", "Bürkner", email = "[email protected]",
role = c("aut", "cre")),
Expand Down
7 changes: 6 additions & 1 deletion R/predictor.R
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ predictor.bprepnl <- function(prep, i = NULL, fprep = NULL, ...) {
# when 'nlform' must be evaluated jointly across observations
# and hence 'loop' had been set to FALSE
for (i in seq_along(args)) {
args[[i]] <- split(args[[i]], row(args[[i]]))
old_dim <- dim(args[[i]])
args[[i]] <- split(args[[i]], slice.index(args[[i]], 1))
if (length(old_dim) > 2L) {
# split drops array dimensions which need to be restored
args[[i]] <- lapply(args[[i]], "dim<-", old_dim[-1])
}
}
.fun <- function(...) eval(prep$nlform, list(...))
eta <- try(
Expand Down
2 changes: 1 addition & 1 deletion man/save_pars.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3e47553

Please sign in to comment.