ExperimentRow

data class ExperimentRow(val name: String, val modelIdentifier: String, val numReplications: Int, val responses: List<ResponseRow>)(source)

One experiment exposed by a ComparisonDataSourceIfc.

Constructors

Link copied to clipboard
constructor(name: String, modelIdentifier: String, numReplications: Int, responses: List<ResponseRow>)

Properties

Link copied to clipboard

the model the experiment ran against. Used by the UI to group experiments by model so the analyst can see at a glance which experiments share a schema of response names.

Link copied to clipboard

the experiment / scenario / design-point identifier. Equals ExperimentTableData.exp_name for scenario-app and DB-backed sources.

Link copied to clipboard

replication count actually completed (not the requested count — that distinction matters for analyses like MCA that require equal rep counts).

Link copied to clipboard

every response / counter the experiment recorded, in source-natural order. Empty when the experiment completed without recording anything.