Skip to content

Commit

Permalink
Merge a61ce08 into 52accc3
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbates authored Apr 25, 2023
2 parents 52accc3 + a61ce08 commit 8c179ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
MixedModels v4.13.0 Release Notes
==============================
* `raneftables` returns a `NamedTuple` where the names are the grouping factor names and the values are some `Tables.jl`-compatible type. This type has been changed to a `Table` from `TypedTables.jl`. [#682]

MixedModels v4.12.1 Release Notes
==============================
* Precompilation is now handled with `PrecompileTools` instead of `SnoopPrecompile`. [#681]
Expand Down Expand Up @@ -424,3 +428,4 @@ Package dependencies
[#677]: https://github.com/JuliaStats/MixedModels.jl/issues/677
[#680]: https://github.com/JuliaStats/MixedModels.jl/issues/680
[#681]: https://github.com/JuliaStats/MixedModels.jl/issues/681
[#682]: https://github.com/JuliaStats/MixedModels.jl/issues/682
2 changes: 1 addition & 1 deletion src/mixedmodel.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ StatsAPI.predict(m::MixedModel) = fitted(m)

function retbl(mat, trm)
nms = (fname(trm), Symbol.(trm.cnames)...)
return DictTable(
return Table(
[NamedTuple{nms}((l, view(mat, :, i)...),) for (i, l) in enumerate(trm.levels)]
)
end
Expand Down

0 comments on commit 8c179ac

Please sign in to comment.