Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Rel 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
goedman committed Jun 12, 2020
1 parent 2a9bdb5 commit adb39d1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StanModels"
uuid = "fb740163-aa3c-59c1-9c12-c3f890714cde"
authors = ["Rob J Goedman <[email protected]"]
version = "2.0.3"
version = "2.0.4"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
2 changes: 1 addition & 1 deletion scripts/02/m2.1s.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ rc = stan_sample(m_2_1s, data=m2_1_data);

if success(rc)
p = read_samples(m_2_1s; output_format=:particles)
#p |> display
p |> display
end
6 changes: 4 additions & 2 deletions scripts/04/m4.1s.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ rc = stan_sample(m_4_1s, data=m4_1_data);
if success(rc)
chn = read_samples(m_4_1s; output_format=:mcmcchains)
# Update parameter names
chn = set_names(chn, Dict("mu" => "μ", "sigma" => "σ"))
describe(chn)
chn = replacenames(chn, Dict("mu" => "μ", "sigma" => "σ"))
chn |> display
end

# chn = Chains(val, ["a", "b", "c", "d", "e"])
2 changes: 1 addition & 1 deletion scripts/04/m4.2s.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ rc = stan_sample(m_4_2s, data=m4_2_data);

if success(rc)
chn = read_samples(m_4_2s; output_format=:mcmcchains)
chn = set_names(chn, Dict("mu" => "μ", "sigma" => "σ"))
chn = replacenames(chn, Dict("mu" => "μ", "sigma" => "σ"))
describe(chn)
end

0 comments on commit adb39d1

Please sign in to comment.