BootstrapEstimateDTO

@Serializable
data class BootstrapEstimateDTO(val parameterName: String, val originalEstimate: Double, val bootstrapAverage: Double, val bias: Double, val mse: Double, val stdError: Double, val numBootstraps: Int, val ciLevel: Double, val normalCILower: Double, val normalCIUpper: Double, val basicCILower: Double, val basicCIUpper: Double, val percentileCILower: Double, val percentileCIUpper: Double)(source)

Wire-safe bootstrap summary for one estimated parameter. The engine performs the resampling and returns only these summaries — never the raw replicate arrays. Three confidence intervals are reported (normal, basic, percentile), each as an explicit lower/upper pair.

Populated in a later phase, only when the configuration requests bootstrap.

Constructors

Link copied to clipboard
constructor(parameterName: String, originalEstimate: Double, bootstrapAverage: Double, bias: Double, mse: Double, stdError: Double, numBootstraps: Int, ciLevel: Double, normalCILower: Double, normalCIUpper: Double, basicCILower: Double, basicCIUpper: Double, percentileCILower: Double, percentileCIUpper: Double)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val mse: Double
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard