ANOVA, T-Test and Other Statistical Tests With Python
ANOVA, T-Test and Other Statistical Tests With Python
1 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
2 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
3 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
4 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
5 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
6 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
# homogeneity
stats.levene(setosa['sepal_width'],
versicolor['sepal_width'])
stats.ttest_ind(setosa['sepal_width'],
7 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
versicolor['sepal_width'])
import pingouin as pg
8 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
print(maov.mv_test())
9 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
10 of 11 9/30/2021, 12:32 PM
ANOVA, T-test and other statistical tests with Python | by Fra... https://towardsdatascience.com/anova-t-test-and-other-statistic...
11 of 11 9/30/2021, 12:32 PM