From 86e71700f9667e2678da688e3902ca6812e43efc Mon Sep 17 00:00:00 2001 From: William Chen Date: Fri, 18 Dec 2020 14:54:46 -0500 Subject: [PATCH] Add line noting high verbosity output includes mean and standard deviation of para estimates. --- src/util.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.jl b/src/util.jl index fcab5ff..a7526d2 100644 --- a/src/util.jl +++ b/src/util.jl @@ -172,6 +172,7 @@ function end_stage_print(cloud::Cloud, para_symbols::Vector{Symbol}; if VERBOSITY[verbose] >= VERBOSITY[:high] μ = weighted_mean(cloud) σ = weighted_std(cloud) + println("Mean and standard deviation of parameter estimates") for n=1:length(para_symbols) println("$(para_symbols[n]) = $(round(μ[n], digits = 5)), $(round(σ[n], digits = 5))") end