ExceedanceEstimator

class ExceedanceEstimator(thresholds: DoubleArray = doubleArrayOf(1.0), name: String? = null) : Collector(source)

Tabulates the proportion and frequency for a random variable X > a(i) where a(i) are thresholds.

Author

rossetti

Parameters

name

the name of the estimator

thresholds

the thresholds

Constructors

Link copied to clipboard
constructor(vararg thresholds: Double)
constructor(thresholds: DoubleArray = doubleArrayOf(1.0), name: String? = null)

Properties

Link copied to clipboard

Gets the count of the number of the observations.

Link copied to clipboard

the array of counts for each threshold

Link copied to clipboard
Link copied to clipboard

the array of proportions for each threshold

Link copied to clipboard

2-d array with 2 rows and numThreshold columns row0 holds the thresholds row1 holds the frequencies

Link copied to clipboard

2-d array with 2 rows and numThreshold columns row0 holds the thresholds row1 holds the proportions

Functions

Link copied to clipboard
open override fun collect(obs: Double)

Collect on the supplied value. Double.NaN, Double.NEGATIVE_INFINITY, and Double.POSITIVE_INFINITY values are counted as missing. Null values are not permitted.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun reset()

Resets the collector as if no observations had been collected.

Link copied to clipboard
open override fun toString(): String