Click or drag to resize
Accord.NET (logo)

IUnivariateFittableDistribution Interface

Common interface for distributions which can be estimated from data.

Namespace:  Accord.Statistics.Distributions
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IUnivariateFittableDistribution : IFittableDistribution<double>, 
	IFittable<double>, IDistribution<double>, IDistribution, 
	ICloneable, IUnivariateDistribution<double>, IUnivariateDistribution

The IUnivariateFittableDistribution type exposes the following members.

Properties
  NameDescription
Public propertyEntropy
Gets entropy of the distribution.
(Inherited from IUnivariateDistributionTObservation.)
Public propertyMean
Gets the mean value for the distribution.
(Inherited from IUnivariateDistributionTObservation.)
Public propertyMedian
Gets the median value for the distribution.
(Inherited from IUnivariateDistributionTObservation.)
Public propertyMode
Gets the mode value for the distribution.
(Inherited from IUnivariateDistributionTObservation.)
Public propertyQuartiles
Gets the Quartiles for this distribution.
(Inherited from IUnivariateDistribution.)
Public propertySupport
Gets the support interval for this distribution.
(Inherited from IUnivariateDistributionTObservation.)
Public propertyVariance
Gets the variance value for the distribution.
(Inherited from IUnivariateDistributionTObservation.)
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodComplementaryDistributionFunction(Double)
Gets the complementary cumulative distribution function (ccdf) for this distribution evaluated at point x. This function is also known as the Survival function.
(Inherited from IDistribution.)
Public methodComplementaryDistributionFunction(TObservation)
Gets the complementary cumulative distribution function (ccdf) for this distribution evaluated at point x. This function is also known as the Survival function.
(Inherited from IDistributionTObservation.)
Public methodCumulativeHazardFunction
Gets the cumulative hazard function for this distribution evaluated at point x.
(Inherited from IUnivariateDistributionTObservation.)
Public methodDistributionFunction(Double)
Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.
(Inherited from IDistribution.)
Public methodDistributionFunction(TObservation)
Gets the cumulative distribution function (cdf) for this distribution evaluated at point x.
(Inherited from IDistributionTObservation.)
Public methodDistributionFunction(Double, Double)
Gets the cumulative distribution function (cdf) for this distribution in the semi-closed interval (a; b] given as P(a < X ≤ b).
(Inherited from IUnivariateDistribution.)
Public methodFit(Array)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodFit(TObservations)
Fits the underlying distribution to a given set of observations.
(Inherited from IFittableTObservations.)
Public methodFit(Array, IFittingOptions)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodFit(Array, Double)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodFit(Array, Int32)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodFit(TObservations, Double)
Fits the underlying distribution to a given set of observations.
(Inherited from IFittableTObservations.)
Public methodFit(Array, Double, IFittingOptions)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodFit(Array, Int32, IFittingOptions)
Fits the underlying distribution to a given set of observations.
(Inherited from IDistribution.)
Public methodGetRange
Gets the distribution range within a given percentile.
(Inherited from IUnivariateDistribution.)
Public methodHazardFunction
Gets the hazard function, also known as the failure rate or the conditional failure density function for this distribution evaluated at point x.
(Inherited from IUnivariateDistributionTObservation.)
Public methodInverseDistributionFunction
Gets the inverse of the cumulative distribution function (icdf) for this distribution evaluated at probability p. This function is also known as the Quantile function.
(Inherited from IUnivariateDistributionTObservation.)
Public methodLogCumulativeHazardFunction
Gets the cumulative hazard function for this distribution evaluated at point x.
(Inherited from IUnivariateDistribution.)
Public methodLogProbabilityFunction(Double)
Gets the log-probability density function (pdf) for this distribution evaluated at point x.
(Inherited from IDistribution.)
Public methodLogProbabilityFunction(TObservation)
Gets the log-probability density function (pdf) for this distribution evaluated at point x.
(Inherited from IDistributionTObservation.)
Public methodProbabilityFunction(Double)
Gets the probability density function (pdf) for this distribution evaluated at point x.
(Inherited from IDistribution.)
Public methodProbabilityFunction(TObservation)
Gets the probability density function (pdf) for this distribution evaluated at point x.
(Inherited from IDistributionTObservation.)
Public methodQuantileDensityFunction
Gets the first derivative of the inverse distribution function (icdf) for this distribution evaluated at probability p.
(Inherited from IUnivariateDistribution.)
Top
See Also