Skip to content
2 changes: 1 addition & 1 deletion rstan/rstan/R/monitor.R
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ monitor <- function(sims, warmup = floor(dim(sims)[1] / 2),
}

out <- as.data.frame(do.call(rbind, out))
probs_str <- names(posterior::quantile2(sims_i, probs = probs))
probs_str <- names(quantile(sims_i, probs = probs, na.rm = TRUE))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't working correctly either, still not being printed. I will look into this.

str_quan <- paste0("Q", probs * 100)
str_quan2 <- paste0("Q", c(0.05, 0.5, 0.95) * 100)
str_mcse_quan <- paste0("MCSE_", str_quan)
Expand Down