Skip to content

Commit

Permalink
remove failing doc test for now
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Jul 5, 2024
1 parent c0efa1f commit 21e093a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions EpiAware/src/EpiAwareUtils/get_param_array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MCMC sample as a `NamedTuple`.
Sampling from a simple model which has both scalar and vector quantity random variables across
4 chains.
```jldoctest; filter = r\"\b\d+(\.\d+)?\b\" => \"*\"
```julia
using Turing, MCMCChains, EpiAware
@model function testmodel()
Expand All @@ -24,10 +24,6 @@ mdl = testmodel()
chn = sample(mdl, Prior(), MCMCSerial(), 2, 1, progress=false)
A = get_param_array(chn)
# output
2×1 Matrix{@NamedTuple{iteration::Int64, chain::Int64, y::Float64, lp::Float64}}:
(iteration = 1, chain = 1, y = 1.2817564703577078, lp = -1.7403883578565975)
(iteration = 2, chain = 1, y = 0.7259423762267098, lp = -1.1824347000055138)
```
"
function get_param_array(chn::Chains)
Expand Down

0 comments on commit 21e093a

Please sign in to comment.