Skip to content

Commit

Permalink
StatsModels 0.34; minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Jun 5, 2023
1 parent 7d9582a commit b35d9fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "a1dec852-9fe5-11e9-361f-8d9fde67cfa2"
keywords = ["lenearmodel", "mixedmodel"]
desc = "Mixed-effects models with flexible covariance structure."
authors = ["Vladimir Arnautov <[email protected]>"]
version = "0.14.6"
version = "0.14.7"

[deps]
DiffResults = "163ba53b-c6d8-5494-b064-1a9d43ac40c5"
Expand All @@ -23,10 +23,10 @@ DiffResults = "1"
Distributions = "0.20, 0.21, 0.22, 0.23, 0.24, 0.25"
ForwardDiff = "0.10"
LineSearches = "7"
MetidaBase = "0.11"
MetidaBase = "0.11, 0.12"
Optim = "1"
ProgressMeter = "1"
StatsBase = "0.29, 0.30, 0.31, 0.32, 0.33"
StatsBase = "0.29, 0.30, 0.31, 0.32, 0.33, 0.34"
StatsModels = "0.7"
julia = "1"

Expand Down
2 changes: 1 addition & 1 deletion src/lmm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function Base.show(io::IO, lmm::LMM)
println(io, " Variance components:")
println(io, " θ vector: ", round.(lmm.result.theta, sigdigits = 6))

mx = hcat(Matrix{Any}(undef, lmm.covstr.tl, 1), lmm.covstr.rcnames, lmm.covstr.ct, round.(lmm.result.theta, sigdigits = 6))
mx = hcat(Matrix{Any}(missing, lmm.covstr.tl, 1), lmm.covstr.rcnames, lmm.covstr.ct, round.(lmm.result.theta, sigdigits = 6))

for i = 1:length(lmm.covstr.random)
if !isa(lmm.covstr.random[i].covtype.s, ZERO)
Expand Down

2 comments on commit b35d9fb

@PharmCat
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/84986

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.14.7 -m "<description of version>" b35d9fbd28681e60abdb5698d0a56498623d34ab
git push origin v0.14.7

Please sign in to comment.