Skip to content

Commit

Permalink
Merge branch 'develop' into release/v2.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicusor Serban committed Dec 3, 2024
2 parents 55370ad + 41e77f0 commit 9ce11fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmdstan/stansummary_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ void get_stats(const stan::mcmc::chainset &chains,
params(i, 0) = chains.mean(i_chains);
params(i, 1) = chains.mcse_mean(i_chains);
params(i, 2) = chains.sd(i_chains);
params(i, 3) = chains.max_abs_deviation(i_chains);
params(i, 3) = chains.med_abs_deviation(i_chains);
Eigen::VectorXd quantiles = chains.quantiles(i_chains, probs);
for (int j = 0; j < quantiles.size(); j++)
params(i, 4 + j) = quantiles(j);
Expand Down

0 comments on commit 9ce11fd

Please sign in to comment.