TransformedParameter<T> Class

Represents a parameter in a statistical model that is a transformation of a standard parameter.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class TransformedParameter<T> : Parameter<T>
Inheritance
Object  →  Parameter<T>  →  TransformedParameter<T>

Type Parameters

T

Remarks

Use the TransformedParameter<T> class to represent a Parameter<T> whose value is a transformation of another parameter.

Confidence intervals for the parameter can be obtained using the GetConfidenceInterval(Double) method. The Statistic and PValue are calculated based on the original (untrasnformed) value and standard error.

Parameter<T> objects cannot be created directly. They are created by the statistical model and exposed through the model's ParameterValues collection.

Properties

Distribution Gets the distribution of the estimated value.
(Inherited from Parameter<T>)
Name Gets or sets the name of the parameter.
(Inherited from Parameter<T>)
PValue Gets the probability that the estimated value is not zero.
(Inherited from Parameter<T>)
StandardError Gets the standard error of the estimated value.
(Inherited from Parameter<T>)
Statistic Gets the value of the statistic for this estimated value.
(Overrides Parameter<T>.Statistic)
Value Gets the estimated value.
(Inherited from Parameter<T>)
Variable Gets the independent Variable this Parameter<T> corresponds to.
(Inherited from Parameter<T>)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetConfidenceInterval Gets the confidence interval for the estimated value at the specified confidence level.
(Overrides Parameter<T>.GetConfidenceInterval(Double))
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetSignificanceTest Returns a hypothesis test for the significance of the parameter value.
(Inherited from Parameter<T>)
GetTTest Returns a OneSampleTTest object that can be used to perform further analysis on the parameter.
(Inherited from Parameter<T>)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a string representation of this instance.
(Inherited from Parameter<T>)

See Also