Skip to content

Commit

Permalink
Merge pull request #76 from TuringLang/csp/quantiles-fix
Browse files Browse the repository at this point in the history
Fix weight misspecification for quantiles
  • Loading branch information
cpfiffer authored Apr 2, 2019
2 parents a9b69b4 + 2958815 commit 75185f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats.jl
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function quantile(chn::AbstractChains; q::Vector=[0.025, 0.25, 0.5, 0.75, 0.975]
show_labels = true

# Quantile weights.
w = [0.0, 0.25, 0.5, 0.75, 1.0]
w = [0.025, 0.25, 0.5, 0.75, 0.975]

# Iterate through each chain.
for c in chns
Expand Down

0 comments on commit 75185f6

Please sign in to comment.