「Statistical test」の版間の差分

提供: Vaccipedia | Resources for Vaccines, Tropical medicine and Travel medicine
ナビゲーションに移動 検索に移動
63行目: 63行目:
 
|-
 
|-
 
!rowspan="3"|2 means
 
!rowspan="3"|2 means
|
+
 
''Enough large sample''
+
|''Enough large sample''
 
*'''Z test'''
 
*'''Z test'''
 
::<math>
 
::<math>
72行目: 72行目:
 
\end{align}
 
\end{align}
 
</math>
 
</math>
 +
 
|rowspan="3" style="vertical-align:top"|
 
|rowspan="3" style="vertical-align:top"|
 
*'''Paired Student's t test'''
 
*'''Paired Student's t test'''
81行目: 82行目:
 
</math>
 
</math>
 
::where <math>\bar{d}</math> is the mean of differences of paired observations
 
::where <math>\bar{d}</math> is the mean of differences of paired observations
 +
 
|rowspan="3" style="vertical-align:top"|
 
|rowspan="3" style="vertical-align:top"|
 
*'''Wilcoxon rank sum test'''<br>='''Mann-Whitney test'''
 
*'''Wilcoxon rank sum test'''<br>='''Mann-Whitney test'''
88行目: 90行目:
 
:#To look up ''critical range'' relevant to both numbers of observations and whether '''the sum of ranks''' in '''the group of smaller number of observation''' (=statistics) is outside the range or not
 
:#To look up ''critical range'' relevant to both numbers of observations and whether '''the sum of ranks''' in '''the group of smaller number of observation''' (=statistics) is outside the range or not
 
::if outside the range, p-value is smaller than designated
 
::if outside the range, p-value is smaller than designated
 +
 
|rowspan="3" style="vertical-align:top"|
 
|rowspan="3" style="vertical-align:top"|
 
*'''Wilcoxon signed rank test'''
 
*'''Wilcoxon signed rank test'''
95行目: 98行目:
 
:#To look up '''critical value''' relevant to numbers of pairs with non-0 differences and whether '''the smaller sum of rank''' (=statistics) is smaller than the critical value
 
:#To look up '''critical value''' relevant to numbers of pairs with non-0 differences and whether '''the smaller sum of rank''' (=statistics) is smaller than the critical value
 
::if smaller than the critical value, p-value is smaller than designated
 
::if smaller than the critical value, p-value is smaller than designated
 +
 
|-
 
|-
 
|''Small sample size <30 in a group''
 
|''Small sample size <30 in a group''
104行目: 108行目:
 
\end{align}
 
\end{align}
 
</math>
 
</math>
 +
 
|-
 
|-
 
|''Large discrepancy in SDs between groups''
 
|''Large discrepancy in SDs between groups''
110行目: 115行目:
 
*Fisher-Behrens
 
*Fisher-Behrens
 
*Welch
 
*Welch
 +
 
|-
 
|-
 
!&ge; 3 means
 
!&ge; 3 means
 
|style="vertical-align:top"|
 
|style="vertical-align:top"|
 
*'''One-way ANOVA'''
 
*'''One-way ANOVA'''
 +
::<math>
 +
\begin{align}
 +
F & =  \frac{ \sum_{j=1}^k \sum_{j=1}^{n_j} (x_{ij}-\bar{x_j})^2 }{ k-1 } \\
 +
& \div \frac{ \sum_{j=1}^k (\bar{x_j}-\bar{x})^2 }{ n-k }
 +
\end{align}
 +
</math>
 +
::<math>n</math> is sample size (whole combined number of observations)
 +
::<math>k</math> is number of groups
 +
 +
<!--
 +
::The variance of whole combined observations is
 +
::<math>s^2=\frac{\sum_{i=1}^n (x_i-\bar{x})^2}{n-1}</math>
 +
::The numarator is ''sum of square''
 +
::<math>\sum_{i=1}^n (x_i-\bar{x})^2</math>
 +
::<math>= \sum_{i=1}^n x_i^2 - 2\bar{x} \sum_{i=1}^n x_i + \bar{x}^2 \sum_{i=1}^n 1</math>
 +
--!>
 +
 
|style="vertical-align:top"|
 
|style="vertical-align:top"|
 
*'''Linear-regression model'''
 
*'''Linear-regression model'''
 
*Repeated measures ANOVA
 
*Repeated measures ANOVA
 +
 
|style="vertical-align:top"|
 
|style="vertical-align:top"|
 
*'''Kruskall-Wallis test'''
 
*'''Kruskall-Wallis test'''

2022年12月12日 (月) 00:25時点における版

Basics & Definition
Epidemiology
Odds in statistics and Odds in a horse race
Collider bias
Data distribution
Statistical test
Regression model
Multivariate analysis
Marginal effects
Prediction and decision
Table-related commands in STATA
Missing data and imputation

Comparing Proportions

Independent samples
(Unpaired in case of two)
Dependent samples
(Paired in case of two)
2 proportions
  • Z test
[math]\displaystyle{ \begin{align} z & = \frac{p_1-p_2}{SE_{pooled(p_1-p_2)}} \\ & = \frac{p_1-p_2}{\sqrt{\frac{\bar{p}(1-\bar{p})}{n_1}+\frac{\bar{p}(1-\bar{p})}{n_2}}} \end{align} }[/math]
≥ 3 proportions Enough large sample
  • [math]\displaystyle{ \chi^2 }[/math] test
[math]\displaystyle{ \chi^2 = \sum \frac{(O - E)^2}{E} }[/math]
[math]\displaystyle{ O }[/math] = observed values
[math]\displaystyle{ E }[/math] = expected values
  • McNemar's [math]\displaystyle{ \chi^2 }[/math] test
[math]\displaystyle{ \begin{align} & McNemar's\ \chi^2 \\ & = \frac{(n_1-n_2)^2}{n_1+n_2} \end{align} }[/math]
[math]\displaystyle{ n_i }[/math] = number of observations in discordant pair
Testing linear association
  • [math]\displaystyle{ \chi^2 }[/math] trend test
[math]\displaystyle{ \begin{align} & \chi^2 trend \\ & = \frac{(\bar{x_1}-\bar{x_2})^2}{s^2(\frac{1}{n_1}+\frac{1}{n_2})} \\ & s = \sqrt{\sum \frac{(x_i-\bar{x_i})^2}{n-1}} \end{align} }[/math]
[math]\displaystyle{ x_i }[/math] = weighted values
[math]\displaystyle{ n_i }[/math] = number of observations
≥1 cell expected value <5

Fisher's exact test

  • very rare in real researches

Comparing Means

Parametric
i.e., normally distributed
Non-parametric
i.e., not normally distributed
Independent samples
(Unpaired in case of two)
Dependent samples
(Paired in case of two)
Independent samples
(Unpaired in case of two)
Dependent samples
(Paired in case of two)
2 means Enough large sample
  • Z test
[math]\displaystyle{ \begin{align} z & = \frac{\bar{x_1}-\bar{x_2}}{SE_{(\bar{x_1}-\bar{x_2})}} \\ & = \frac{\bar{x_1}-\bar{x_2}}{\sqrt{\frac{s_1^2}{n_1}+\frac{s_2^2}{n_2}}} \end{align} }[/math]
  • Paired Student's t test
[math]\displaystyle{ \begin{align} paired\ t & = \frac{\bar{d}}{SE_d} \\ & = \frac{\bar{d}}{\frac{s}{\sqrt{n}}} \\ \end{align} }[/math]
where [math]\displaystyle{ \bar{d} }[/math] is the mean of differences of paired observations
  • Wilcoxon rank sum test
    =Mann-Whitney test
[math]\displaystyle{ H_0 }[/math] is distribution of outcomes in both two populations are the same
  1. To rank whole combined observations of two groups
  2. To separate back the ranks into two groups
  3. To look up critical range relevant to both numbers of observations and whether the sum of ranks in the group of smaller number of observation (=statistics) is outside the range or not
if outside the range, p-value is smaller than designated
  • Wilcoxon signed rank test
  1. To calculate differences between pairs and discard 0 differences
  2. To rank the absolute values of differences (ignoring 0)
  3. To make the sum of ranks of positive difference and the sum of ranks of negative differences ('signed rank')
  4. To look up critical value relevant to numbers of pairs with non-0 differences and whether the smaller sum of rank (=statistics) is smaller than the critical value
if smaller than the critical value, p-value is smaller than designated
Small sample size <30 in a group
  • Student's t test
[math]\displaystyle{ \begin{align} t & = \frac{\bar{x_1}-\bar{x_2}}{SE_{(\bar{x_1}-\bar{x_2})}} \\ & = \frac{\bar{x_1}-\bar{x_2}}{\sqrt{\frac{(n_1-1)s_1^2+(n_2-1)s_2^2}{(n_1-1)+(n_2-1)}}\sqrt{\frac{1}{n_1}+\frac{1}{n_2}}} \end{align} }[/math]
Large discrepancy in SDs between groups
  • Bootstrap
  • Non-parametric
  • Fisher-Behrens
  • Welch
≥ 3 means
  • One-way ANOVA
[math]\displaystyle{ \begin{align} F & = \frac{ \sum_{j=1}^k \sum_{j=1}^{n_j} (x_{ij}-\bar{x_j})^2 }{ k-1 } \\ & \div \frac{ \sum_{j=1}^k (\bar{x_j}-\bar{x})^2 }{ n-k } \end{align} }[/math]
[math]\displaystyle{ n }[/math] is sample size (whole combined number of observations)
[math]\displaystyle{ k }[/math] is number of groups