Skip to content

Quick-reference guide to the 17 statistical hypothesis tests that you need in applied machine learning, with sample code in Python.

Notifications You must be signed in to change notification settings

dvamsidhar2002/Statistical-Hypothesis-Testing-with-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 

Repository files navigation

Statistical-Hypothesis-Testing-with-Python

Quick-reference guide to the 17 statistical hypothesis tests that you need in applied machine learning, with sample code in Python.


There are 100s of hypothesis testing types existing in field of statistics but we will need the 17 statistical hypothesis testing that we would use in applied machine learning and the machine learning projects.
flowchart TD
A[STATISTICAL HYPOTHESIS] --> B(NORMALITY TESTS);
A[STATISTICAL HYPOTHESIS] --> C(CORRELATION TESTS);
A[STATISTICAL HYPOTHESIS] --> D(STATIONARY TESTS);
A[STATISTICAL HYPOTHESIS] --> E(PARAMETRIC STATISTICAL TESTS);
A[STATISTICAL HYPOTHESIS] --> F(NON-PARAMETRIC STATISTICAL TESTS);
Loading

Details about the above named test and their sub branches

  1. NORMALITY TESTS
    flowchart TD
    A[NORMALITY TESTS] --> B(Shapiro-Wilk Tests)
    A[NORMALITY TESTS] --> C(D'Agostino's K^2 Test)
    A[NORMALITY TESTS] --> D(Anderson-Darling Test)
    
    Loading
  2. CORRELATION TESTS
    flowchart TD
    A[CORRELATION TESTS] --> B(Pearson's Correlation Coefficient)
    A[CORRELATION TESTS] --> C(Spearman's Rank Correlation)
    A[CORRELATION TESTS] --> D(Kendall's Rank Correlation)
    A[CORRELATION TESTS] --> E(Chi-Squared Test)
    
    Loading
  3. STATIONARY TESTS
    flowchart TD
    A[STATIONARY TESTS] --> B(Augmented Dickey-Fuller)
    A[STATIONARY TESTS] --> C(Kwiatkouski-Phillips-Sehmidt-Shin)
    
    Loading
  4. PARAMETRIC STATISTICAL HYPOTHESIS TESTS
    flowchart TD
    A[PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> B(Student's t-test)
    A[PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> C(Paired Student's t-test)
    A[PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> D(Analysis of Variance test/ANOVA)
    A[PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> E(Repeated Measures ANOVA test)
    
    Loading
  5. NON-PARAMETRIC STATISTICAL HYPOTHESIS TESTS
    flowchart TD
    A[NON-PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> B(Mann-Whitney U test)
    A[NON-PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> C(Wilcoxon Signed-Rank test)
    A[NON-PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> D(Kruskal-Wallis H Test)
    A[NON-PARAMETRIC STATISTICAL HYPOTHESIS TESTS] --> E(Friedman Test)
    
    Loading

About

Quick-reference guide to the 17 statistical hypothesis tests that you need in applied machine learning, with sample code in Python.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages