statsmodels.stats.nonparametric.ProbSuperiorResult#

class statsmodels.stats.nonparametric.ProbSuperiorResult(statistic, pvalue, df, distribution)[source]#

Result of RankCompareResult.test_prob_superior.

Parameters:
statisticfloat

Test statistic for the z- or t-test.

pvaluefloat

p-value of the test based on either the normal or t distribution.

dffloat or None

Degrees of freedom used for the t distribution. None if the normal distribution was used.

distribution{“normal”, “t”}

Name of the reference distribution used for pvalue.

Attributes:
df
distribution
pvalue
statistic

Notes

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

Methods

Properties