-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
corner
plot issue
#457
Comments
I looked into this, and it's a classic problem. Plots.jl checks that the widths add up to 1 using: if sum(widths) != 1
error("The sum of widths must be 1!")
end With the example in the docs using MCMCChains
using StatsPlots
# Define the experiment
n_iter = 100
n_name = 3
n_chain = 2
# experiment results
val = randn(n_iter, n_name, n_chain) .+ [1, 2, 3]'
val = hcat(val, rand(1:2, n_iter, 1, n_chain))
# construct a Chains object
chn = Chains(val, [:A, :B, :C, :D])
corner(chn) it turns out that widths = [0.3, 0.3, 0.3, 0.1] and ... julia> 0.3 + 0.3 + 0.3 + 0.1
0.9999999999999999 |
Upstream PR: JuliaPlots/Plots.jl#4972 |
Merged now, will be fixed with the next release of Plots.jl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following example errors. It seems the issue is from upper stream packages instead of
MCMCChains
.Note that the
corner
plot works fine when the number of variables is smaller than 3.The text was updated successfully, but these errors were encountered: