bundles / scipy 1.17.1 / scipy / stats / _resampling / BootstrapResult
class
scipy.stats._resampling:BootstrapResult
source: /scipy/stats/_resampling.py :273
Signature
class BootstrapResult ( confidence_interval : ConfidenceInterval , bootstrap_distribution : np.ndarray , standard_error : float | np.ndarray ) → None Members
Summary
Result object returned by scipy.stats.bootstrap.
Attributes
confidence_interval: ConfidenceIntervalThe bootstrap confidence interval as an instance of collections.namedtuple with attributes
lowandhigh.bootstrap_distribution: ndarrayThe bootstrap distribution, that is, the value of
statisticfor each resample. The last dimension corresponds with the resamples (e.g.res.bootstrap_distribution.shape[-1] == n_resamples).standard_error: float or ndarrayThe bootstrap standard error, that is, the sample standard deviation of the bootstrap distribution.
Aliases
-
scipy.stats._resampling.BootstrapResult