Skip to content

Commit e51fe91

Browse files
committed
updated index pages
The index pages were updated with the recently added proofs/definitions.
1 parent 8a8930a commit e51fe91

7 files changed

Lines changed: 19 additions & 2 deletions

File tree

I/DbA.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: "Definition by Author"
88

99
- [Sample covariance](/D/cov-samp)
1010

11-
### JoramSoch (174 definitions)
11+
### JoramSoch (176 definitions)
1212

1313
- [Akaike information criterion](/D/aic)
1414
- [Alternative hypothesis](/D/h1)
@@ -120,6 +120,7 @@ title: "Definition by Author"
120120
- [Null hypothesis](/D/h0)
121121
- [One-tailed and two-tailed hypothesis](/D/hyp-tail)
122122
- [One-tailed and two-tailed test](/D/test-tail)
123+
- [One-way analysis of variance](/D/anova1)
123124
- [p-value](/D/pval)
124125
- [Point and set hypothesis](/D/hyp-point)
125126
- [Poisson distribution](/D/poiss)
@@ -175,6 +176,7 @@ title: "Definition by Author"
175176
- [Test statistic](/D/tstat)
176177
- [Total sum of squares](/D/tss)
177178
- [Transformed general linear model](/D/tglm)
179+
- [Two-way analysis of variance](/D/anova2)
178180
- [Uniform and non-uniform prior distribution](/D/prior-uni)
179181
- [Uniform-prior log model evidence](/D/uplme)
180182
- [Univariate and multivariate random variable](/D/rvar-uni)

I/DbN.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,5 @@ title: "Definition by Number"
187187
| D178 | betabin-data | [Beta-binomial data](/D/betabin-data) | JoramSoch | 2022-10-20 |
188188
| D179 | me | [Model evidence](/D/me) | JoramSoch | 2022-10-20 |
189189
| D180 | fe | [Family evidence](/D/fe) | JoramSoch | 2022-10-20 |
190+
| D181 | anova1 | [One-way analysis of variance](/D/anova1) | JoramSoch | 2022-11-06 |
191+
| D182 | anova2 | [Two-way analysis of variance](/D/anova2) | JoramSoch | 2022-11-06 |

I/DbT.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ title: "Definition by Topic"
160160

161161
- [One-tailed and two-tailed hypothesis](/D/hyp-tail)
162162
- [One-tailed and two-tailed test](/D/test-tail)
163+
- [One-way analysis of variance](/D/anova1)
163164

164165
### P
165166

@@ -231,6 +232,7 @@ title: "Definition by Topic"
231232
- [Test statistic](/D/tstat)
232233
- [Total sum of squares](/D/tss)
233234
- [Transformed general linear model](/D/tglm)
235+
- [Two-way analysis of variance](/D/anova2)
234236

235237
### U
236238

I/PbA.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: "Proof by Author"
88

99
- [Covariance matrix of the multinomial distribution](/P/mult-cov)
1010

11-
### JoramSoch (349 proofs)
11+
### JoramSoch (352 proofs)
1212

1313
- [Accuracy and complexity for the univariate Gaussian](/P/ug-anc)
1414
- [Accuracy and complexity for the univariate Gaussian with known variance](/P/ugkv-anc)
@@ -105,6 +105,7 @@ title: "Proof by Author"
105105
- [Expression of the cumulative distribution function of the normal distribution without the error function](/P/norm-cdfwerf)
106106
- [Expression of the probability mass function of the beta-binomial distribution using only the gamma function](/P/betabin-pmfitogf)
107107
- [Extreme points of the probability density function of the normal distribution](/P/norm-extr)
108+
- [F-test for main effect in one-way analysis of variance](/P/anova1-f)
108109
- [First central moment is zero](/P/momcent-1st)
109110
- [First raw moment is mean](/P/momraw-1st)
110111
- [Full width at half maximum for the normal distribution](/P/norm-fwhm)
@@ -213,9 +214,11 @@ title: "Proof by Author"
213214
- [One-sample z-test for independent observations](/P/ugkv-ztest1)
214215
- [Ordinary least squares for multiple linear regression](/P/mlr-ols)
215216
- [Ordinary least squares for multiple linear regression](/P/mlr-ols2)
217+
- [Ordinary least squares for one-way analysis of variance](/P/anova1-ols)
216218
- [Ordinary least squares for simple linear regression](/P/slr-ols)
217219
- [Ordinary least squares for simple linear regression](/P/slr-ols2)
218220
- [Ordinary least squares for the general linear model](/P/glm-ols)
221+
- [Ordinary least squares for two-way analysis of variance](/P/anova2-ols)
219222
- [Paired t-test for dependent observations](/P/ug-ttestp)
220223
- [Paired z-test for dependent observations](/P/ugkv-ztestp)
221224
- [Parameter estimates for simple linear regression are uncorrelated after mean-centering](/P/slr-olscorr)

I/PbN.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,3 +374,6 @@ title: "Proof by Number"
374374
| P366 | betabin-cdf | [Cumulative distribution function of the beta-binomial distribution](/P/betabin-cdf) | JoramSoch | 2022-10-22 |
375375
| P367 | me-der | [Derivation of the model evidence](/P/me-der) | JoramSoch | 2022-10-20 |
376376
| P368 | fe-der | [Derivation of the family evidence](/P/fe-der) | JoramSoch | 2022-10-20 |
377+
| P369 | anova1-ols | [Ordinary least squares for one-way analysis of variance](/P/anova1-ols) | JoramSoch | 2022-11-06 |
378+
| P370 | anova1-f | [F-test for main effect in one-way analysis of variance](/P/anova1-f) | JoramSoch | 2022-11-06 |
379+
| P371 | anova2-ols | [Ordinary least squares for two-way analysis of variance](/P/anova2-ols) | JoramSoch | 2022-11-06 |

I/PbT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ title: "Proof by Topic"
120120

121121
### F
122122

123+
- [F-test for main effect in one-way analysis of variance](/P/anova1-f)
123124
- [First central moment is zero](/P/momcent-1st)
124125
- [First raw moment is mean](/P/momraw-1st)
125126
- [Full width at half maximum for the normal distribution](/P/norm-fwhm)
@@ -259,9 +260,11 @@ title: "Proof by Topic"
259260
- [One-sample z-test for independent observations](/P/ugkv-ztest1)
260261
- [Ordinary least squares for multiple linear regression](/P/mlr-ols)
261262
- [Ordinary least squares for multiple linear regression](/P/mlr-ols2)
263+
- [Ordinary least squares for one-way analysis of variance](/P/anova1-ols)
262264
- [Ordinary least squares for simple linear regression](/P/slr-ols)
263265
- [Ordinary least squares for simple linear regression](/P/slr-ols2)
264266
- [Ordinary least squares for the general linear model](/P/glm-ols)
267+
- [Ordinary least squares for two-way analysis of variance](/P/anova2-ols)
265268

266269
### P
267270

I/PwS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,10 @@ title: "Proofs without Source"
7777
- [Mode of the normal distribution](/P/norm-mode)
7878
- [Necessary and sufficient condition for independence of multivariate normal random variables](/P/mvn-ind)
7979
- [Normal-gamma distribution is a special case of normal-Wishart distribution](/P/ng-nw)
80+
- [Ordinary least squares for one-way analysis of variance](/P/anova1-ols)
8081
- [Ordinary least squares for simple linear regression](/P/slr-ols2)
8182
- [Ordinary least squares for the general linear model](/P/glm-ols)
83+
- [Ordinary least squares for two-way analysis of variance](/P/anova2-ols)
8284
- [Parameter estimates for simple linear regression are uncorrelated after mean-centering](/P/slr-olscorr)
8385
- [Posterior density is proportional to joint likelihood](/P/post-jl)
8486
- [Probability density function of the beta distribution](/P/beta-pdf)

0 commit comments

Comments
 (0)