TestResult Class

Describes the result of a statistical test.

Definition

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class TestResult
Inheritance
Object    TestResult

Remarks

A statistical test compares data to a prediction, called the null hypothesis, and computes a number, called the test statistic, which measures how much the data differs from the prediction. A key aspect of a useful statistical test is that the distribution of the test statistic under the null hypothesis can be computed. Given this distribution, one can say how likely it is for the test statistic value to take on as extreme a value was observed. If this probability is low, the null hypothesis is likely false. If this probability is not too low, the data is compatible with the null hypothesis.

Properties

Probability Gets the P-value of the statistical test.
Statistic Gets the test statistic.
Type Gets or sets the sided-ness of the statistical test.
UnderlyingStatistic Gets the underlying discrete test statistic.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also