statsmodels.stats.rates.NonequivalencePoissonResult#

class statsmodels.stats.rates.NonequivalencePoissonResult(statistic, pvalue, method, results_larger, results_smaller, title)[source]#

Result of nonequivalence_poisson_2indep.

Parameters:
statisticfloat

Test statistic of the one-sided test that has the smaller pvalue.

pvaluefloat

p-value of the non-equivalence test, 2 * min(pvalue_low, pvalue_upp).

methodstr

Method used to compute the underlying one-sided tests.

results_largerPoissonTest2indepResult

Results instance for the one-sided test at the lower boundary.

results_smallerPoissonTest2indepResult

Results instance for the one-sided test at the upper boundary.

titlestr

Descriptive title of the non-equivalence test.

Attributes:
method
pvalue
results_larger
results_smaller
statistic
title

Notes

Unpacks as statistic, pvalue = result. Other values are only accessible using attributes.

Methods

Properties