Skip to content

Commit

Permalink
fix issue #1685
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-buerkner committed Sep 9, 2024
1 parent 54bb6d0 commit 8cdec67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/brmsframe.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ brmsframe.brmsterms <- function(x, data, frame = NULL, basis = NULL, ...) {
# this must be a multivariate model
stopifnot(is.list(frame))
x$frame <- frame
x$frame$re <- subset(x$frame$re, resp = x$resp)
x$frame$re <- subset2(x$frame$re, resp = x$resp)
}
data <- subset_data(data, x)
x$frame$resp <- frame_resp(x, data = data)
Expand Down

0 comments on commit 8cdec67

Please sign in to comment.