WeibullBestFitOptions Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(46 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:APIClass|GlobalStuff Weibull Class|GlobalStuff Weibull}}
{{Template:API}}{{Template:APIBreadcrumb}}


== Declaration  ==
{{APIComment|Allow fitting with 1-P Exponentional}}<br>
{{APIPrefix|Public}}AllowExponential1{{APIPrefix|As Boolean}}= True


{{APIComment|Allow fitting with 2-P Exponentional}}<br>
<onlyinclude>Represents the analysis settings for the [[WeibullDataSet.CalculateBestFit|CalculateBestFit]] method of the associated [[WeibullDataSet Class|WeibullDataSet]] object.</onlyinclude>
{{APIPrefix|Public}}AllowExponential2{{APIPrefix|As Boolean}}= True


{{APIComment|Allow fitting with Normal}}<br>
==Methods ==
{{APIPrefix|Public}}AllowNormal{{APIPrefix|As Boolean}}= True
{| {{APITable}}
|-
| style="width: 200px;"|AllowAllDistributions||Sets the first eleven properties in the class (as shown below) to true.
|-
|AllowNoneDistributions||Sets the first eleven properties in the class (as shown below) to false.
|}


{{APIComment|Allow fitting with LogNormal}}<br>
{{APIPrefix|Public}}AllowLognormal{{APIPrefix|As Boolean}}= True


{{APIComment|Allow fitting with Weibull 2P}}<br>
==Properties==
{{APIPrefix|Public}}AllowWeibull2{{APIPrefix|As Boolean}}= True
{| {{APITable}}
|-
| style="width: 200px;"|AllowExponential1||Indicates whether the 1-parameter exponential distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowExponential2||Indicates whether the 2-parameter exponential distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowGamma||Indicates whether the gamma distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowGenGamma||Indicates whether the generalized gamma distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowGumbel||Indicates whether the Gumbel distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowLogistic||Indicates whether the logistic distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowLogLogistic||Indicates whether the loglogistic distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowLognormal||Indicates whether the lognormal distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowNormal||Indicates whether the normal distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowWeibull2||Indicates whether the 2-parameter Weibull distribution will be considered. '''Boolean'''. Default value = True.
|-
|AllowWeibull3||Indicates whether the 3-parameter exponential distribution will be considered. '''Boolean'''. Default value = True.
|-
|Analysis||Gets or sets a value from the '''[[WeibullSolverMethod_Enumeration|WeibullSolverMethod]]''' enumeration, which specifies the method (e.g., RRX, MLE, etc.) for estimating the parameters of the distribution. Default value = 0 (RRX).
|-
|ConfBounds||Gets or sets a value from the '''[[WeibullSolverCBMethod_Enumeration|WeibullSolverCBMethod]]''' enumeration, which specifies the method for calculating the confidence bounds. Default value = 0 (Fisher Matrix method).
|-
|RankingMethod||Gets or sets a value from the '''[[WeibullSolverRankMethod_Enumeration|WeibullSolverRankMethod]]''' enumeration, which specifies the rank method for calculating the unreliability estimates of the times-to-failure data. Default value = 0 (median ranks).
|-
|SortBeforeCalculations||Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. '''Boolean'''. Default value = True.
|-
|UngroupedGroupedData||Indicates whether to ungroup a grouped data set when using rank regression. '''Boolean'''. Default value = False.
|-
|UseRSRegression||Indicates whether to use ReliaSoft's ranking method (RRM) to calculate the unreliability estimates for times-to-failure data. '''Boolean'''. Default value = False.
|-
|UseSpecialSort||Indicates whether failures will always be put before suspensions when two identical times are encountered. '''Boolean'''. Default value = True.
|}


{{APIComment|Allow fitting with Weibull 3P}}<br>
{{APIPrefix|Public}}AllowWeibull3{{APIPrefix|As Boolean}}= True


{{APIComment|Allow fitting with Gamma}}<br>
== Example ==
{{APIPrefix|Public}}AllowGamma{{APIPrefix|As Boolean}}= True
The following example demonstrates how to initialize the goodness of fit analysis settings for a particular WeibullDataSet object.


{{APIComment|Allow fitting with GenGamma}}<br>
'''VBA'''
{{APIPrefix|Public}}AllowGenGamma{{APIPrefix|As Boolean}}= True
{{APIComment|'Declare a new WeibullDataSet object.}}
  {{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet
 
{{APIComment|'Specify the analysis settings.}}
  WDS.BestFitSettings.AllowAllDistributions
  WDS.BestFitSettings.Analysis = WeibullSolverMethod_MLE
  WDS.BestFitSettings.ConfBounds = WeibullSolverCBMethod_FisherMatrix
  WDS.BestFitSettings.RankingMethod = WeibullSolverRankMethod_Median
  WDS.BestFitSettings.SortBeforeCalculations = True
  WDS.BestFitSettings.UngroupGroupedData = False
  WDS.BestFitSettings.UseRSRegression = False
  WDS.BestFitSettings.UseSpecialSort = True
{{APIComment|'Add failure times to the data set.}}
  {{APIPrefix|Call}} WDS.AddFailure(10, 1)
  {{APIPrefix|Call}} WDS.AddFailure(20, 1)
  {{APIPrefix|Call}} WDS.AddFailure(30, 1) 
{{APIComment|'Analyze the data set.}}
  {{APIPrefix|Call}} WDS.CalculateBestFit()


{{APIComment|Allow fitting with Logistic}}<br>
'''VB.NET'''
{{APIPrefix|Public}}AllowLogistic{{APIPrefix|As Boolean}}= True
 
{{APIComment|'Declare a new WeibullDataSet object.}}
{{APIComment|Allow fitting with LogLogistic}}<br>
  {{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet
{{APIPrefix|Public}}AllowLoglogistic{{APIPrefix|As Boolean}}= True
 
 
{{APIComment|'Specify the analysis settings.}}
{{APIComment|Allow fitting with Gumbel}}<br>
  {{APIPrefix|Call}} WDS.BestFitSettings.AllowAllDistributions
{{APIPrefix|Public}}AllowGumbel{{APIPrefix|As Boolean}}= True
  WDS.BestFitSettings.Analysis = WeibullSolverMethod.MLE
 
  WDS.BestFitSettings.ConfBounds = WeibullSolverCBMethod.FisherMatrix
{{APIComment|Set Analysis from [[WeibullSolverMethod]] Enum}}<br>
  WDS.BestFitSettings.RankingMethod = WeibullSolverRankMethod.Median
{{APIPrefix|Public}}Analysis{{APIPrefix|As [[WeibullSolverMethod]]}}= [[WeibullSolverMethod]].MLE
  WDS.BestFitSettings.SortBeforeCalculations = True
 
  WDS.BestFitSettings.UngroupGroupedData = False
{{APIComment|Set Ranking Method from [[WeibullSolverRankMethod]] Enum}}<br>
  WDS.BestFitSettings.UseRSRegression = False
{{APIPrefix|Public}}RankingMethod{{APIPrefix|As [[WeibullSolverRankMethod]]}}= [[WeibullSolverRankMethod]].Median
  WDS.BestFitSettings.UseSpecialSort = True
 
{{APIComment|Set to use RS Regression method}}<br>
{{APIComment|'Add failure times to the data set.}}
{{APIPrefix|Public}}UseRSRegression{{APIPrefix|As Boolean}}= False
  WDS.AddFailure(10, 1)
 
  WDS.AddFailure(20, 1)
{{APIComment|Set the Confidence method from the [[WeibullSolverCBMethod]] Enum.}}<br>
  WDS.AddFailure(30, 1) 
{{APIPrefix|Public}}ConfBounds{{APIPrefix|As [[WeibullSolverCBMethod]]}}= [[WeibullSolverCBMethod]].FisherMatrix
 
{{APIComment|'Analyze the data set.}}
{{APIComment|Set to ungroup any grouped data.}}<br>
  WDS.CalculateBestFit()
{{APIPrefix|Public}}UngroupGroupedData{{APIPrefix|As Boolean}}= False
 
{{APIComment|Set to sort data before calculation.}}<br>
{{APIPrefix|Public}}SortBeforeCalculations{{APIPrefix|As Boolean}}= True
 
{{APIComment|Set to use Special Sort.}}<br>
{{APIPrefix|Public}}UseSpecialSort{{APIPrefix|As Boolean}}= True

Latest revision as of 20:29, 24 June 2016

APIWiki.png


Member of: SynthesisAPI


Represents the analysis settings for the CalculateBestFit method of the associated WeibullDataSet object.

Methods

Name Description
AllowAllDistributions Sets the first eleven properties in the class (as shown below) to true.
AllowNoneDistributions Sets the first eleven properties in the class (as shown below) to false.


Properties

Name Description
AllowExponential1 Indicates whether the 1-parameter exponential distribution will be considered. Boolean. Default value = True.
AllowExponential2 Indicates whether the 2-parameter exponential distribution will be considered. Boolean. Default value = True.
AllowGamma Indicates whether the gamma distribution will be considered. Boolean. Default value = True.
AllowGenGamma Indicates whether the generalized gamma distribution will be considered. Boolean. Default value = True.
AllowGumbel Indicates whether the Gumbel distribution will be considered. Boolean. Default value = True.
AllowLogistic Indicates whether the logistic distribution will be considered. Boolean. Default value = True.
AllowLogLogistic Indicates whether the loglogistic distribution will be considered. Boolean. Default value = True.
AllowLognormal Indicates whether the lognormal distribution will be considered. Boolean. Default value = True.
AllowNormal Indicates whether the normal distribution will be considered. Boolean. Default value = True.
AllowWeibull2 Indicates whether the 2-parameter Weibull distribution will be considered. Boolean. Default value = True.
AllowWeibull3 Indicates whether the 3-parameter exponential distribution will be considered. Boolean. Default value = True.
Analysis Gets or sets a value from the WeibullSolverMethod enumeration, which specifies the method (e.g., RRX, MLE, etc.) for estimating the parameters of the distribution. Default value = 0 (RRX).
ConfBounds Gets or sets a value from the WeibullSolverCBMethod enumeration, which specifies the method for calculating the confidence bounds. Default value = 0 (Fisher Matrix method).
RankingMethod Gets or sets a value from the WeibullSolverRankMethod enumeration, which specifies the rank method for calculating the unreliability estimates of the times-to-failure data. Default value = 0 (median ranks).
SortBeforeCalculations Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. Boolean. Default value = True.
UngroupedGroupedData Indicates whether to ungroup a grouped data set when using rank regression. Boolean. Default value = False.
UseRSRegression Indicates whether to use ReliaSoft's ranking method (RRM) to calculate the unreliability estimates for times-to-failure data. Boolean. Default value = False.
UseSpecialSort Indicates whether failures will always be put before suspensions when two identical times are encountered. Boolean. Default value = True.


Example

The following example demonstrates how to initialize the goodness of fit analysis settings for a particular WeibullDataSet object.

VBA

 'Declare a new WeibullDataSet object. 
  Dim WDS As New WeibullDataSet
 
 'Specify the analysis settings. 
  WDS.BestFitSettings.AllowAllDistributions
  WDS.BestFitSettings.Analysis = WeibullSolverMethod_MLE
  WDS.BestFitSettings.ConfBounds = WeibullSolverCBMethod_FisherMatrix
  WDS.BestFitSettings.RankingMethod = WeibullSolverRankMethod_Median
  WDS.BestFitSettings.SortBeforeCalculations = True
  WDS.BestFitSettings.UngroupGroupedData = False
  WDS.BestFitSettings.UseRSRegression = False
  WDS.BestFitSettings.UseSpecialSort = True

 'Add failure times to the data set. 
  Call WDS.AddFailure(10, 1)
  Call WDS.AddFailure(20, 1)
  Call WDS.AddFailure(30, 1)  

 'Analyze the data set. 
  Call WDS.CalculateBestFit()
VB.NET

 'Declare a new WeibullDataSet object. 
  Dim WDS As New WeibullDataSet
 
 'Specify the analysis settings. 
  Call WDS.BestFitSettings.AllowAllDistributions
  WDS.BestFitSettings.Analysis = WeibullSolverMethod.MLE
  WDS.BestFitSettings.ConfBounds = WeibullSolverCBMethod.FisherMatrix
  WDS.BestFitSettings.RankingMethod = WeibullSolverRankMethod.Median
  WDS.BestFitSettings.SortBeforeCalculations = True
  WDS.BestFitSettings.UngroupGroupedData = False
  WDS.BestFitSettings.UseRSRegression = False
  WDS.BestFitSettings.UseSpecialSort = True

 'Add failure times to the data set. 
  WDS.AddFailure(10, 1)
  WDS.AddFailure(20, 1)
  WDS.AddFailure(30, 1)  

 'Analyze the data set. 
  WDS.CalculateBestFit()