class TimeStatistic extends Statistic

The TimeStatistic class is used to collect values and compute time-persistent statistics on them (e.g., Number in Queue).

See also

staff.unak.is/andy/Year%203%20Simulation/Laboratories/v4manual/internal.htm

Linear Supertypes
Statistic, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TimeStatistic
  2. Statistic
  3. Error
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TimeStatistic(name: String = "p-stat", _lastTime: Double = 0.0, _startTime: Double = 0.0)

    name

    the name for this statistic (e.g., 'numberInQueue' or 'tellerQ')

    _lastTime

    the time of last observation

    _startTime

    the time observation began

Value Members

  1. def accum(x: Double, t: Double): Unit

    Accumulate the next value weighted by its time duration and update accumulators.

    Accumulate the next value weighted by its time duration and update accumulators.

    x

    the value to accumulate

    t

    the time of the observation

  2. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  3. def interval(p: Double = .95): Double

    Compute the confidence interval half-width for the given confidence level.

    Compute the confidence interval half-width for the given confidence level.

    p

    the confidence level

    Definition Classes
    Statistic
  4. def lastTime: Double

    Return the last time statistics were recorded by this collector.

  5. def ma: Double

    Compute/estimate the mean absolue value (ma), e.g., Mean Absolute Error (MAE).

    Compute/estimate the mean absolue value (ma), e.g., Mean Absolute Error (MAE).

    Definition Classes
    Statistic
  6. def max: Double

    Return the maximum value in sample.

    Return the maximum value in sample.

    Definition Classes
    Statistic
  7. def mean: Double

    Compute/estimate the time-weighted mean.

    Compute/estimate the time-weighted mean.

    Definition Classes
    TimeStatisticStatistic
  8. def min: Double

    Return the minimum value in sample.

    Return the minimum value in sample.

    Definition Classes
    Statistic
  9. def ms: Double

    Compute/estimate the mean square (ms), e.g., Mean Square Error (MSE).

    Compute/estimate the mean square (ms), e.g., Mean Square Error (MSE).

    Definition Classes
    Statistic
  10. val name: String
    Definition Classes
    TimeStatisticStatistic
  11. def nd: Double

    Return the number of samples as a double.

    Return the number of samples as a double.

    Definition Classes
    Statistic
  12. def num: Int

    Return the number of samples.

    Return the number of samples.

    Definition Classes
    Statistic
  13. def reset(): Unit
    Definition Classes
    Statistic
  14. def rms: Double

    Compute/estimate the root mean square (rms), e.g., Root Mean Square Error (RMSE).

    Compute/estimate the root mean square (rms), e.g., Root Mean Square Error (RMSE).

    Definition Classes
    Statistic
  15. def show: String

    Show the values of this collector's accumulators.

    Show the values of this collector's accumulators.

    Definition Classes
    TimeStatisticStatistic
  16. def startTime: Double

    Return the time observation began.

  17. def statRow: Array[Any]

    Return the summary statistics as a row/Array.

    Return the summary statistics as a row/Array.

    Definition Classes
    Statistic
  18. def stddev: Double

    Compute/estimate the sample standard deviation.

    Compute/estimate the sample standard deviation.

    Definition Classes
    Statistic
  19. def tally(x: Double): Unit

    Disable the tally method (it is for sample statistics, not time-persistent statistics.

    Disable the tally method (it is for sample statistics, not time-persistent statistics.

    x

    the value to tally

    Definition Classes
    TimeStatisticStatistic
  20. def toString(): String

    Generate a row of statistical results as a string.

    Generate a row of statistical results as a string.

    Definition Classes
    Statistic → AnyRef → Any
  21. def variance: Double

    Compute/estimate the time-weighted variance.

    Compute/estimate the time-weighted variance.

    Definition Classes
    TimeStatisticStatistic