You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* remove dataset and datasets
The dataset functionality is now housed in MixedModelsDatasets. By fully separating out this functionality, we set ourselves up for easier and lighter weight upgrades to which and how we store datasets.
* NEWS
Copy file name to clipboardExpand all lines: NEWS.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ MixedModels v5.0.0 Release Notes
8
8
- Internal code around the default optimizer has been restructured. In particular, the NLopt backend has been moved to a submodule, which will make it easier to move it to an extension if we promote another backend to the default. [#853]
9
9
- Internal code around optimization in profiling has been restructuring so that fitting done during calls to `profile` respect the `backend` and `optimizer` settings. [#853]
10
10
- The `prfit!` convenience function has been removed. [#853]
11
+
- The `dataset` and `datasets` functions have been removed. They are now housed in `MixedModelsDatasets`.[#854]
Copy file name to clipboardExpand all lines: docs/src/GaussHermite.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ The definition of `MixedModels.GHnorm` is similar to the `gausshermitenorm` func
73
73
GHnorm
74
74
```
75
75
```@example Main
76
-
using MixedModels
76
+
using MixedModels, MixedModelsDatasets
77
77
GHnorm(3)
78
78
```
79
79
@@ -100,7 +100,7 @@ Several covariates were recorded including the woman's age (centered at the mean
100
100
The version of the data used here is that used in review of multilevel modeling software conducted by the Center for Multilevel Modelling, currently at University of Bristol (http://www.bristol.ac.uk/cmm/learning/mmsoftware/data-rev.html).
101
101
These data are available as the `:contra` dataset.
102
102
```@example Main
103
-
contra = DataFrame(MixedModels.dataset(:contra))
103
+
contra = DataFrame(MixedModelsDatasets.dataset(:contra))
the effective degrees of freedom is the lower bound.
@@ -522,7 +522,7 @@ sum(leverage(fm3))
522
522
Models for which the estimates of the variances of the random effects are large relative to the residual variance have effective degrees of freedom close to the upper bound.
0 commit comments