File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
name = " StatsAPI"
2
2
uuid = " 82ae8749-77ed-4fe6-ae5f-f523153014b0"
3
3
authors = [
" Milan Bouchet-Valat <[email protected] " ]
4
- version = " 1.3 .0"
4
+ version = " 1.4 .0"
5
5
6
6
[deps ]
7
7
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Original file line number Diff line number Diff line change @@ -57,7 +57,11 @@ function islinear end
57
57
"""
58
58
nulldeviance(model::StatisticalModel)
59
59
60
- Return the deviance of the null model, that is the one including only the intercept.
60
+ Return the deviance of the null model, obtained by dropping all
61
+ independent variables present in `model`.
62
+
63
+ If `model` includes an intercept, the null model is the one with only the intercept;
64
+ otherwise, it is the one without any predictor (not even the intercept).
61
65
"""
62
66
function nulldeviance end
63
67
@@ -81,8 +85,11 @@ function loglikelihood end
81
85
"""
82
86
nullloglikelihood(model::StatisticalModel)
83
87
84
- Return the log-likelihood of the null model corresponding to `model`.
85
- This is usually the model containing only the intercept.
88
+ Return the log-likelihood of the null model, obtained by dropping all
89
+ independent variables present in `model`.
90
+
91
+ If `model` includes an intercept, the null model is the one with only the intercept;
92
+ otherwise, it is the one without any predictor (not even the intercept).
86
93
"""
87
94
function nullloglikelihood end
88
95
You can’t perform that action at this time.
0 commit comments