statsmodels.stats.rates.NonequivalencePoissonResult#
- class statsmodels.stats.rates.NonequivalencePoissonResult(statistic, pvalue, method, results_larger, results_smaller, title)[source]#
Result of
nonequivalence_poisson_2indep.- Parameters:
- statistic
float Test statistic of the one-sided test that has the smaller pvalue.
- pvalue
float p-value of the non-equivalence test,
2 * min(pvalue_low, pvalue_upp).- method
str Method used to compute the underlying one-sided tests.
- results_larger
PoissonTest2indepResult Results instance for the one-sided test at the lower boundary.
- results_smaller
PoissonTest2indepResult Results instance for the one-sided test at the upper boundary.
- title
str Descriptive title of the non-equivalence test.
- statistic
- Attributes:
- method
- pvalue
- results_larger
- results_smaller
- statistic
- title
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties