stats.comparison.RepeatedMeasuresAnova

stats.comparison.RepeatedMeasuresAnova(
    f_statistic,
    p_value,
    df_treatment,
    df_error,
    n_blocks,
    n_treatments,
    ss_treatment,
    ss_block,
    ss_error,
)

Result of repeated_measures_anova() — one-way RM-ANOVA.

Attributes

Name Type Description
f_statistic float F statistic of the treatment effect.
p_value float Right-tail p-value of f_statistic under F(df_treatment, df_error).
df_treatment int Treatment degrees of freedom (entries - 1).
df_error int Error degrees of freedom ((entries - 1) * (blocks - 1)).
n_blocks int Number of blocks (rows; e.g. target days).
n_treatments int Number of treatments (columns; e.g. entries).
ss_treatment float Treatment sum of squares.
ss_block float Block sum of squares.
ss_error float Error sum of squares.