Package | Description |
---|---|
desmoj.core.statistic |
Objects to collect statistical data.
|
Constructor and Description |
---|
Accumulate(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean automatic,
boolean showInReport,
boolean showInTrace)
Constructor for a Accumulate object that will be connected to a
ValueSupplier , from which the values will be fetched. |
ConfidenceCalculator(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean showInReport,
boolean showInTrace)
Constructor for a ConfidenceCalculator object that is connected to a
ValueSupplier . |
Histogram(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
double[] range,
boolean showInReport,
boolean showInTrace)
Constructor for a Histogram object with user-defined interval cells that will be connected to a
ValueSupplier . |
Histogram(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
double lowerEnd,
double upperEnd,
int cells,
boolean showInReport,
boolean showInTrace)
Constructor for a Histogram object with equidistant interval cells that will be connected to a
ValueSupplier . |
HistogramAccumulate(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean automatic,
double[] range,
boolean showInReport,
boolean showInTrace)
Constructor for a Histogram object with user-defined interval cells that will be connected to a
ValueSupplier . |
HistogramAccumulate(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean automatic,
double lowerEnd,
double upperEnd,
int cells,
boolean showInReport,
boolean showInTrace)
Constructor for a Histogram object with equidistant interval cells that will be connected to a
ValueSupplier . |
Regression(Model ownerModel,
java.lang.String name,
java.lang.String xName,
java.lang.String yName,
ValueSupplier xValsup,
ValueSupplier yValsup,
boolean showInReport,
boolean showInTrace)
Constructor for a Regression object that is observing two
ValueSuppliers for the x and y values. |
Regression(Model ownerModel,
java.lang.String name,
ValueSupplier xValsup,
ValueSupplier yValsup,
boolean showInReport,
boolean showInTrace)
Constructor for a Regression object with no names for the x and y values.
|
Tally(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean showInReport,
boolean showInTrace)
Constructor for a Tally object that is connected to a
ValueSupplier . |
TallyRunning(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
int n,
boolean showInReport,
boolean showInTrace)
Constructor for a TallyRunning object that is connected to a
ValueSupplier . |
TimeSeries(Model ownerModel,
java.lang.String name,
java.lang.String fileName,
ValueSupplier valSup,
TimeInstant start,
TimeInstant end,
boolean automatic,
boolean showInReport,
boolean showInTrace)
Constructor for a TimeSeries object that will observe a
ValueSupplier and write data to the given file. |
TimeSeries(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
TimeInstant start,
TimeInstant end,
boolean automatic,
boolean showInReport,
boolean showInTrace)
Constructor for a TimeSeries object that will observe a
ValueSupplier but will NOT write data into a file. |
ValueStatistics(Model ownerModel,
java.lang.String name,
ValueSupplier valSup,
boolean showInReport,
boolean showInTrace)
Constructor for a ValueStatistics object that will be connected to a
ValueSupplier . |