statsmodels.stats.nonparametric.ProbSuperiorResult#
- class statsmodels.stats.nonparametric.ProbSuperiorResult(statistic, pvalue, df, distribution)[source]#
Result of
RankCompareResult.test_prob_superior.- Parameters:
- statistic
float Test statistic for the z- or t-test.
- pvalue
float p-value of the test based on either the normal or t distribution.
- df
floatorNone 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.
- statistic
- Attributes:
- df
- distribution
- pvalue
- statistic
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties