Skip to content

Commit

Permalink
fixed code bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Feldman authored and Joe Feldman committed Jan 4, 2023
2 parents 91b785e + 728bcf0 commit 80c2220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/Software.R
Original file line number Diff line number Diff line change
Expand Up @@ -746,9 +746,9 @@ get_predictive_Y<-function(mcmc,
etas = NULL
#need to fix this

etas = data.frame(do.call(rbind, t(sapply(unique(cs),function(x) return(rbind(etas,
etas = do.call(rbind, t(sapply(unique(cs),function(x) return(rbind(etas,
mvrnorm(sum(cs == x),mu[[x]],
Delta[[x]])))))))
Delta[[x]]))))))


}else{
Expand Down

0 comments on commit 80c2220

Please sign in to comment.