|  | Johnson | 
 Inheritance Hierarchy
Inheritance Hierarchy Syntax
SyntaxThe JohnsonDistribution type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | JohnsonDistribution | Default constructor. Constructs a JohnsonDistribution instance with default shape and location parameters and transformation type. | 
|  | JohnsonDistribution(Double, Double, Double, Double, JohnsonTransformationType) | Constructs a JohnsonDistribution instance with the given parameters and transformation type. | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | Delta | Gets and sets the delta parameter of the Johnson distribution. | 
|  | Gamma | Gets and sets the gamma parameter of the Johnson distribution. | 
|  | Kurtosis | Gets the kurtosis, a measure of the degree of peakednesss of the distribution. | 
|  | Lambda | Gets and sets the lambda parameter of the Johnson distribution. | 
|  | Mean | Gets the mean of the distribution. | 
|  | Skewness | Gets the skewness, a measure of the degree of asymmetry of this distribution. | 
|  | Type | Gets and sets the transformation type of the Johnson distribution. | 
|  | Variance | Gets the variance of the distribution. | 
|  | Xi | Gets and sets the xi parameter of the Johnson distribution. | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | CDF | Returns the cumulative density function evaluated at a given value. (Overrides ProbabilityDistributionCDF(Double)) | 
|  | Clone | Creates a deep copy of this JohnsonDistribution. (Overrides ProbabilityDistributionClone) | 
|   | Fit | Fits a Johnson distribution to the given data. | 
|  | InverseCDF | Returns the inverse cumulative density function evaluated at a given value. (Overrides ProbabilityDistributionInverseCDF(Double)) | 
|  | InverseCdfUsingBracket | Uses a bracketing method to evaluate the inverse of cumulative 
            distribution functions. (Inherited from ProbabilityDistribution) | 
|  | InverseDiscreteCdfUsingBracket | Uses a bracketing method to evaluate the inverse of cumulative 
            distribution functions for discrete distributions. (Inherited from ProbabilityDistribution) | 
|  | Returns the probability density function evaluated at a given value. (Overrides ProbabilityDistributionPDF(Double)) | |
|  | ToString | Returns a formatted string representation of this distribution. (Overrides ProbabilityDistributionToString) | 
|  | Transform | Transforms the given data using this Johnson Distribution. | 
 Remarks
Remarksz = gamma + delta * log(f(u)), where u = (x - xi) / lambdaNormal (SN): f(u) = exp(u) Log Normal (SL): f(u) = u Unbounded (SU): f(u) = u + sqrt(1+u^2) Bounded (SB): f(u) = u/(1-u)
 See Also
See Also