welchAnalysis

fun ReportBuilder.welchAnalysis(observer: WelchFileObserver, includePartialSums: Boolean = true, includeBatchMeans: Boolean = false, includeBiasTest: Boolean = false, deletionPoint: Int = -1)(source)

Appends a warm-up analysis section for a WelchFileObserver.

This overload creates the WelchDataFileAnalyzer internally from observer and delegates to welchAnalysis(WelchDataFileAnalyzer).

Parameters

observer

the observer attached before simulation

includePartialSums

true (default) includes a PartialSumsPlot

includeBatchMeans

true appends a batch-means analysis section using the welch averages after the deletion point

includeBiasTest

true appends a Schruben initialization bias test section between the MSER table and the batch-means section; the test is applied to Welch averages batched with WelchDataFileAnalyzer.BIAS_TEST_BATCH_SIZE

deletionPoint

observation index to use as the start of the post-deletion analysis; -1 (default) means use the MSER-recommended deletion point automatically


fun ReportBuilder.welchAnalysis(analyzer: WelchDataFileAnalyzer, includePartialSums: Boolean = true, includeBatchMeans: Boolean = false, includeBiasTest: Boolean = false, deletionPoint: Int = -1)(source)

Appends a warm-up analysis section for a WelchDataFileAnalyzer.

Parameters

analyzer

the analyzer to report from

includePartialSums

true (default) includes a PartialSumsPlot

includeBatchMeans

true appends a batch-means analysis section

includeBiasTest

true appends a Schruben initialization bias test section; the test is applied to Welch averages batched with WelchDataFileAnalyzer.BIAS_TEST_BATCH_SIZE

deletionPoint

observation index for post-deletion analysis; -1 means use the MSER recommendation