Skip to content
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

Fix failing tests #284

Merged
merged 11 commits into from
Apr 8, 2021
Merged
Prev Previous commit
Next Next commit
Fix changerate
  • Loading branch information
devmotion committed Apr 8, 2021
commit 6b96b330d8dca9632dc50b0ae2c8df394a550f3a
2 changes: 1 addition & 1 deletion src/stats.jl
Original file line number Diff line number Diff line change
@@ -112,7 +112,7 @@ end

function chaindataframe_changerate(name, names_of_params, chains; kwargs...)
# Compute the change rates.
changerates, mvchangerate = chains
changerates, mvchangerate = changerate(chains)
torfjelde marked this conversation as resolved.
Show resolved Hide resolved

# Summarize the results in a named tuple.
nt = (; zip(names_of_params, changerates)..., multivariate = mvchangerate)