Releases: unfoldtoolbox/UnfoldMixedModels.jl
v0.1.2
UnfoldMixedModels v0.1.2
- bugfix #13 - when using designs with more than two levels,
coeftable
did not work correctly and ran an error. This should be fixed now
Merged pull requests:
- added animation to landing page (#10) (@behinger)
- Update doc links to the respective UnfoldDocs pages (#12) (@xuyg16)
- Fix 1x3 categorical condensing (#14) (@behinger)
Closed issues:
- BoundsError when running coeftable on real data (#13)
update docs page
just used to trigger a tag
v0.1.1
UnfoldMixedModels v0.1.1
- minor doc fixes
- new landing page
Merged pull requests:
v0.1.0
UnfoldMixedModels v0.1.0
Initial release - split from Unfold.jl, all MixedModels functionality was moved here from an Unfold.jl/MixedModels.jl extension. Reason: Export of a new type is impossible from an extension.
Moving from older version than Unfold v0.8?
In older Unfold.jl
versions, the UnfoldMixedModel
functionality was part of Unfold - we now removed it due to some technical reasons. But we think the code-base becomes more transparent, and that's important.
What you need to do
before:
using Unfold, MixedModels
now
using UnfoldMixedModels`
- so you only need to remove that
,
;-).
Explanation: Before we used MixedModels
as a "hook" to activate the UnfoldMixedModelsExt.jl
- extension. Now the UnfoldMixedModels code is in this repo/package.
Note
Unfold & MixedModels public functions are re-exported, no need to explicitly do using Unfold
if you want to access that functionality.
Merged pull requests:
- Bump codecov/codecov-action from 4 to 5 (#1) (@dependabot[bot])
- inital commit (#2) (@behinger)
- [AUTO] pre-commit update (#3) (@github-actions[bot])