WeibullSolverDistribution Enumeration: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| Chris Kahn (talk | contribs) No edit summary | Chris Kahn (talk | contribs) No edit summary | ||
| Line 12: | Line 12: | ||
| | '''Name''' || '''Description''' | | '''Name''' || '''Description''' | ||
| |-   | |-   | ||
| |Weibull      || Weibull distribution | |Weibull      || Weibull distribution | ||
| |- | |- | ||
| | | |Bayesian     || Bayesian-Weibull distribution | ||
| |- | |- | ||
| |Exponential  || Exponential distribution | |Exponential  || Exponential distribution | ||
| |- | |- | ||
| |Lognormal    || Lognormal distribution   | |Lognormal    || Lognormal distribution   | ||
| |- | |||
| |Normal       || Normal distribution | |||
| |- | |- | ||
| |G_Gamma      || Generalized gamma distribution   | |G_Gamma      || Generalized gamma distribution   | ||
| |- | |||
| |Gamma        || Gamma distribution  | |||
| |- | |- | ||
| |Logistic     || Logistic distribution    | |Logistic     || Logistic distribution    | ||
| Line 29: | Line 31: | ||
| |- | |- | ||
| |Gumbel       || Gumbel distribution   | |Gumbel       || Gumbel distribution   | ||
| |- | |- | ||
| |} | |} | ||
Revision as of 22:34, 12 February 2014
 
Contains all available life distributions.
To set the specific version of the selected distribution (e.g., 2-parameter Weibull vs. mixed Weibull) for use with the WeibullDataSet.Calculate method, use the Parameters property of the WeibullAnalysisOptions class.
Syntax
Public Enum WeibullSolverDistribution
Members
| Name | Description | 
| Weibull | Weibull distribution | 
| Bayesian | Bayesian-Weibull distribution | 
| Exponential | Exponential distribution | 
| Lognormal | Lognormal distribution | 
| Normal | Normal distribution | 
| G_Gamma | Generalized gamma distribution | 
| Gamma | Gamma distribution | 
| Logistic | Logistic distribution | 
| Loglogistic | Loglogistic distribution | 
| Gumbel | Gumbel distribution | 
Usage Example
Declare the WeibullDataSet object.
Dim WDS as New WeibullDataSet
Use the WeibullDataSet.AnalysisSettings method to set Weibull as the distribution for analysis.
WDS.AnalysisSettings.Distribution = WeibullSolverDistribution.Weibull
