Skip to content

Commit

Permalink
fix sdest
Browse files Browse the repository at this point in the history
  • Loading branch information
palday committed Apr 13, 2020
1 parent 43d09ca commit 0858435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generalizedlinearmixedmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ function Base.setproperty!(m::GeneralizedLinearMixedModel, s::Symbol, y)
end
end

sdest(m::GeneralizedLinearMixedModel{T}) where {T} = dispersion_parameter(m) ? convert(T, NaN) : varest(m)
sdest(m::GeneralizedLinearMixedModel{T}) where {T} = dispersion_parameter(m) ? varest(m) : convert(T, NaN)

function Base.show(io::IO, m::GeneralizedLinearMixedModel)
if m.optsum.feval < 0
Expand Down

0 comments on commit 0858435

Please sign in to comment.