statsmodels.stats.nonparametric.TostProbSuperiorResult#

class statsmodels.stats.nonparametric.TostProbSuperiorResult(statistic, pvalue, results_larger, results_smaller, title)[source]#

Result of RankCompareResult.tost_prob_superior.

Parameters:
statisticfloat

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

pvaluefloat

p-value of the equivalence test given by the larger pvalue of the two one-sided tests.

results_largerProbSuperiorResult

Results instance with test statistic, pvalue and degrees of freedom for the lower threshold test.

results_smallerProbSuperiorResult

Results instance with test statistic, pvalue and degrees of freedom for the upper threshold test.

titlestr

Descriptive title of the equivalence test.

Attributes:
pvalue
results_larger
results_smaller
statistic
title

Notes

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

Methods

Properties