Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

attempt to find better starting values for GLMM when defaults aren't positive semidefinite #796

Merged
merged 11 commits into from
Dec 11, 2024
19 changes: 19 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"access_right": "open",
"license": "MIT",
"title": "MixedModels.jl",
"description": "A Julia package for fitting (statistical) mixed-effects models",
"upload_type": "software",
"creators": [
{
"affiliation": "Beacon Biosignals",
"name": "Alday, Phillip M.",
"orcid": "0000-0002-9984-5745"
},
{
"affiliation": "University of Wisconsin - Madison",
"name": "Bates, Douglas",
"orcid": "0000-0001-8316-9503"
}
]
}
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
MixedModels v4.28.0 Release Notes
==============================
- `GeneralizedLinearMixedModel` now attempts to fall back to very constrained variance values when the default initial values result in a non positive semidefinite covariance matrix. [#792]

MixedModels v4.27.1 Release Notes
==============================
- `profile` now includes a `finally` block to restore the original model even if an error occurs before profiling is complete [#795]
Expand Down Expand Up @@ -579,4 +583,5 @@ Package dependencies
[#783]: https://github.com/JuliaStats/MixedModels.jl/issues/783
[#785]: https://github.com/JuliaStats/MixedModels.jl/issues/785
[#791]: https://github.com/JuliaStats/MixedModels.jl/issues/791
[#792]: https://github.com/JuliaStats/MixedModels.jl/issues/792
[#795]: https://github.com/JuliaStats/MixedModels.jl/issues/795
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MixedModels"
uuid = "ff71e718-51f3-5ec2-a782-8ffcbfa3c316"
author = ["Phillip Alday <[email protected]>", "Douglas Bates <[email protected]>", "Jose Bayoan Santiago Calderon <[email protected]>"]
version = "4.27.1"
author = ["Phillip Alday <[email protected]>", "Douglas Bates <[email protected]>"]
version = "4.28.0"

[deps]
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45"
Expand Down
Loading
Loading