{ } Raw JSON

bundles / scipy latest / scipy / stats / _resampling / BootstrapMethod

class

scipy.stats._resampling:BootstrapMethod

source: /scipy/stats/_resampling.py :2326

Signature

class   BootstrapMethod ( n_resamples = 9999 batch = None random_state = None method = BCa * rng = None )

Members

Summary

Configuration information for a bootstrap confidence interval.

Extended Summary

Instances of this class can be passed into the method parameter of some confidence interval methods to generate a bootstrap confidence interval.

Attributes

n_resamples : int, optional

The number of resamples to perform. Default is 9999.

batch : int, optional

The number of resamples to process in each vectorized call to the statistic. Batch sizes >>1 tend to be faster when the statistic is vectorized, but memory usage scales linearly with the batch size. Default is None, which processes all resamples in a single batch.

rng : `numpy.random.Generator`, optional

Pseudorandom number generator used to perform resampling.

If rng is passed by keyword to the initializer or the rng attribute is used directly, types other than numpy.random.Generator are passed to numpy.random.default_rng to instantiate a Generator before use. If rng is already a Generator instance, then the provided instance is used. Specify rng for repeatable behavior.

If this argument is passed by position, if random_state is passed by keyword into the initializer, or if the random_state attribute is used directly, legacy behavior for random_state applies:

  • If random_state is None (or numpy.random), the numpy.random.RandomState singleton is used.

  • If random_state is an int, a new RandomState instance is used, seeded with random_state.

  • If random_state is already a Generator or RandomState instance then that instance is used.

method : {'BCa', 'percentile', 'basic'}

Whether to use the 'percentile' bootstrap ('percentile'), the 'basic' (AKA 'reverse') bootstrap ('basic'), or the bias-corrected and accelerated bootstrap ('BCa', default).

Aliases

  • scipy.stats.BootstrapMethod

Referenced by