statsmodels.emplike.elanova.ANOVAResult#

class statsmodels.emplike.elanova.ANOVAResult(llr, pvalue, mu, weights)[source]#

Result of ANOVA.compute_ANOVA.

Parameters:
llrfloat

-2 times the log-likelihood ratio, the test statistic.

pvaluefloat

The p-value of the test statistic.

mufloat

The common mean, either the value supplied by the caller or the maximum empirical likelihood estimate.

weightsndarray or None

The observation weights that maximize the likelihood.

Methods

count(value, /)

Return number of occurrences of value.

index(value[, start, stop])

Return first index of value.

Methods

count(value, /)

Return number of occurrences of value.

index(value[, start, stop])

Return first index of value.

Properties

llr

Alias for field number 0

mu

Alias for field number 2

pvalue

Alias for field number 1

weights

Alias for field number 3