bundles / scipy 1.17.1 / scipy / stats / _binomtest / BinomTestResult
class
scipy.stats._binomtest:BinomTestResult
source: /scipy/stats/_binomtest.py :11
Signature
class BinomTestResult ( k , n , alternative , statistic , pvalue ) Members
Summary
Result of scipy.stats.binomtest.
Attributes
k: intThe number of successes (copied from binomtest input).
n: intThe number of trials (copied from binomtest input).
alternative: strIndicates the alternative hypothesis specified in the input to binomtest. It will be one of
'two-sided','greater', or'less'.statistic: floatThe estimate of the proportion of successes.
pvalue: floatThe p-value of the hypothesis test.
Aliases
-
scipy.stats._binomtest.BinomTestResult