BootStrapResults

data class BootStrapResults(val totalMSE: Double, val totalBias: Double, val totalVariance: Double, val estimates: Map<String, BootstrapEstimate>)

Holds information from the parameter bootstrapping process.

Parameters

totalMSE

the total estimated mean squared error summed over the parameters

totalBias

the total estimated bias summed over the parameters

totalVariance

the total estimated variance summed over the parameters. This ignores any dependence between parameters.

estimates

the base bootstrap estimate for each parameter

Constructors

Link copied to clipboard
constructor(totalMSE: Double, totalBias: Double, totalVariance: Double, estimates: Map<String, BootstrapEstimate>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard