Python library for calculating Analysis of Variance statistics.
import pyNOVAor
from pyNOVA import RM_ANOVACurrently the only implemented variation is the repeated measures ANOVA (RM_ANOVA).
F, p, eta = pyNOVA.RM_ANOVA(pandas.DataFrame, corr='GG', print_table=True, p_normal=0.05)Calculates the F-statistic, p-value, and η2partial with the specified sphericity correction (Greenhouse-Geissler, Huynh-Feldt, the average of the two, or none). Will also display a table of statistics.