EstimatedResponseIfc

An interface to define basic statistics for something that is estimated.

Inheritors

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
abstract val average: Double

Gets the unweighted average of the observations.

Link copied to clipboard
abstract val count: Double

Gets the count for the number of the observations.

Link copied to clipboard
abstract var label: String?
Link copied to clipboard
abstract val name: String

Gets the name of the Statistic

Link copied to clipboard

Gets the sample standard deviation of the observations. Simply the square root of variance

Link copied to clipboard

Gets the standard error of the observations. Simply the generate standard deviation divided by the square root of the number of observations

Link copied to clipboard
abstract val variance: Double

Gets the sample variance of the observations.

Functions

Link copied to clipboard
open fun halfWidth(level: Double): Double

Gets the confidence interval half-width. Simply the standard error times the confidence coefficient as determined by an appropriate sampling distribution

Link copied to clipboard
open fun screeningWidth(estimate: EstimatedResponseIfc, level: Double = DEFAULT_CONFIDENCE_LEVEL): Double

Computes the pair-wise screening width assuming that the estimates are independent. This width is used to specify screening intervals within screening procedures. This quantity is the square root of the sum of squared half-widths of the estimates.