File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ MixedModels v5.0.3 Release Notes
2+ ==============================
3+ - Small update in some code related to displaying dispersion parameters in cases where inference has failed. [ #865 ]
4+
15MixedModels v5.0.2 Release Notes
26==============================
37- The default display and ` confint ` methods for bootstrap results from models without dispersion parameters has been fixed. [ #861 ]
@@ -695,3 +699,4 @@ Package dependencies
695699[ #858 ] : https://github.com/JuliaStats/MixedModels.jl/issues/858
696700[ #860 ] : https://github.com/JuliaStats/MixedModels.jl/issues/860
697701[ #861 ] : https://github.com/JuliaStats/MixedModels.jl/issues/861
702+ [ #865 ] : https://github.com/JuliaStats/MixedModels.jl/issues/865
Original file line number Diff line number Diff line change 11name = " MixedModels"
22uuid = " ff71e718-51f3-5ec2-a782-8ffcbfa3c316"
33author = [
" Phillip Alday <[email protected] >" ,
" Douglas Bates <[email protected] >" ]
4- version = " 5.0.2 "
4+ version = " 5.0.3 "
55
66[deps ]
77Arrow = " 69666777-d1a9-59fb-9406-91d4454c9d45"
Original file line number Diff line number Diff line change @@ -359,7 +359,10 @@ function StatsBase.confint(
359359 par = filter (collect (propertynames (tbl))) do k
360360 k = string (k)
361361 # σ is missing in models without a dispersion parameter
362- if k == " σ" && Missing <: eltype (tbl. σ)
362+ Tσ = eltype (tbl. σ)
363+ # see https://github.com/JuliaStats/MixedModels.jl/pull/861#discussion_r2323094090
364+ # for more info on why this logic is so convulated
365+ if k == " σ" && ((Tσ === Any && any (ismissing, tbl. σ)) || Missing <: T σ)
363366 return false
364367 end
365368 return ! startswith (k, ' θ' ) && k != " obj"
You can’t perform that action at this time.
0 commit comments