diff --git a/Project.toml b/Project.toml index a2dc1f9..b6de17b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "PosteriorStats" uuid = "7f36be82-ad55-44ba-a5c0-b8b5480d7aa5" authors = ["Seth Axen and contributors"] -version = "0.4.0" +version = "0.4.1" [deps] Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" diff --git a/docs/make.jl b/docs/make.jl index 96f60b8..1188874 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -35,7 +35,7 @@ withenv("COLUMNS" => 90) do assets=[joinpath("assets", "citations.css")], ), pages=["Home" => "index.md", "API" => "api.md", "References" => "references.md"], - warnonly=[:doctest, :footnote, :missing_docs], + warnonly=[:missing_docs], plugins=[bib, links], ) end diff --git a/src/eti.jl b/src/eti.jl index 8428cc5..8a02d0d 100644 --- a/src/eti.jl +++ b/src/eti.jl @@ -47,9 +47,9 @@ julia> x = randn(1_000, 1, 1) .+ reshape(0:5:10, 1, 1, :); julia> eti(x) 3-element Vector{IntervalSets.ClosedInterval{Float64}}: - -1.6100456898452082 .. 1.6318467198599587 - 3.3899543101547915 .. 6.631846719859959 - 8.389954310154792 .. 11.631846719859958 + -1.610045656629508 .. 1.6318466811022705 + 3.389954343370492 .. 6.63184668110227 + 8.38995434337049 .. 11.631846681102271 ``` """ function eti( diff --git a/src/r2_score.jl b/src/r2_score.jl index 69800fb..e404c26 100644 --- a/src/r2_score.jl +++ b/src/r2_score.jl @@ -43,7 +43,7 @@ julia> y_true = idata.observed_data.y; julia> y_pred = PermutedDimsArray(idata.posterior_predictive.y, (:draw, :chain, :y_dim_0)); julia> r2_score(y_true, y_pred) -(r2 = 0.683196996216511, eti = 0.6082075654135802 .. 0.7462891653797559) +(r2 = 0.683196996216511, eti = 0.6230680117869596 .. 0.7384123771046265) ``` # References