batchWelchAverages

Creates a BatchStatistic that batches the Welch averages according to the batching parameters. Uses the number of observations via getMinNumObservationsInReplications() to determine the number of batches based on MIN_BATCH_SIZE. No data is deleted.

Return

A BatchStatistic

Throws

if there was a problem accessing the file


Creates a BatchStatistic that batches the Welch averages according to the batching parameters. Uses the number of observations via getMinNumObservationsInReplications() to determine the number of batches based on MIN_BATCH_SIZE.

Return

A BatchStatistic

Parameters

deletePt

the number of observations to delete at beginning of series

Throws

if there was a problem accessing the file


fun batchWelchAverages(deletePt: Int, minBatchSize: Int): BatchStatistic

Creates a BatchStatistic that batches the Welch averages according to the batching parameters. Uses the number of observations via getMinNumObservationsInReplications() to determine the number of batches based on the supplied batch size.

Return

A BatchStatistic

Parameters

deletePt

the number of observations to delete at beginning of series

minBatchSize

the size of the batches, must be GT 1

Throws

if there was a problem accessing the file


fun batchWelchAverages(deletePt: Int, minNumBatches: Int, minBatchSize: Int): BatchStatistic

Creates a BatchStatistic that batches the Welch averages according to the batching parameters. If the minNumBatches x minBatchSize = number of observations then the maxNBMultiple does not matter. Uses a batch multiple of 2.

Return

a BatchStatistic

Parameters

deletePt

the number of observations to delete at beginning of series

minNumBatches

the minimum number of batches to make

minBatchSize

the minimum batch size

Throws

if there was a problem accessing the file


fun batchWelchAverages(deletePt: Int, minNumBatches: Int, minBatchSize: Int, maxNBMultiple: Int): BatchStatistic

Creates a BatchStatistic that batches the Welch averages according to the batching parameters. If the minNumBatches x minBatchSize = number of observations then the maxNBMultiple does not matter.

Return

the BatchStatistic

Parameters

deletePt

the number of observations to delete at beginning of series

minNumBatches

the minimum number of batches to make

minBatchSize

the minimum batch size

maxNBMultiple

the batch means multiple

Throws

if there was a problem accessing the file