Skip to content

Commit

Permalink
Merge 0592f1b into 5b3e960
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 22, 2023
2 parents 5b3e960 + 0592f1b commit 77d50dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
@@ -1,7 +1,7 @@
name = "MCMCDiagnosticTools"
uuid = "be115224-59cd-429b-ad48-344e309966f0"
authors = ["David Widmann"]
version = "0.3.2"
version = "0.3.3"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -24,7 +24,7 @@ DataStructures = "0.18.3"
Distributions = "0.25"
MLJModelInterface = "1.6"
SpecialFunctions = "0.8, 0.9, 0.10, 1, 2"
StatsBase = "0.33"
StatsBase = "0.33, 0.34"
StatsFuns = "1"
Tables = "1"
julia = "1.6"
Expand Down
1 change: 1 addition & 0 deletions src/discretediag.jl
Expand Up @@ -150,6 +150,7 @@ function billingsley_sub(f::Array{Int,3})

# transition probabilities
mP = (mapslices(sum, f; dims=[3]) ./ mapslices(sum, mf; dims=[3]))
replace!(mP, NaN => 0)
mP = reshape(mP, size(mP)[1:2])

idx = findall((A .* B) .> 0)
Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Expand Up @@ -32,6 +32,6 @@ MLJLIBSVMInterface = "0.2"
MLJModels = "0.16"
MLJXGBoostInterface = "0.3"
OffsetArrays = "1"
StatsBase = "0.33"
StatsBase = "0.33, 0.34"
Tables = "1"
julia = "1.6"

0 comments on commit 77d50dd

Please sign in to comment.