WeibullGeneralOptions Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
*{{Template:WeibullGeneralOptions.DiscardNegLocation|DiscardNegLocation}} {{APIComment|{{Template:WeibullGeneralOptions.DiscardNegLocation.Cmt}}}}
*{{Template:WeibullGeneralOptions.DiscardNegLocation|DiscardNegLocation}} {{APIComment|{{Template:WeibullGeneralOptions.DiscardNegLocation.Cmt}}}}
*{{Template:WeibullGeneralOptions.ResetExpLocation|ResetExpLocation}} {{APIComment|{{Template:WeibullGeneralOptions.ResetExpLocation.Cmt}}}}
*{{Template:WeibullGeneralOptions.ResetExpLocation|ResetExpLocation}} {{APIComment|{{Template:WeibullGeneralOptions.ResetExpLocation.Cmt}}}}
*{{Template:WeibullGeneralOptions.Use3PTrueMLE|Use3PTrueMLE}} {{APIComment|{{Template:WeibullGeneralOptions.Use3TrueMLE.Cmt}}}}
*{{Template:WeibullGeneralOptions.Use3TrueMLE|Use3PTrueMLE}} {{APIComment|{{Template:WeibullGeneralOptions.Use3TrueMLE.Cmt}}}}
*{{Template:WeibullGeneralOptions.UseExtendedGGamma|UseExtendedGGamma}} {{APIComment|{{Template:WeibullGeneralOptions.UseExtendedGGamma.Cmt}}}}
*{{Template:WeibullGeneralOptions.UseExtendedGGamma|UseExtendedGGamma}} {{APIComment|{{Template:WeibullGeneralOptions.UseExtendedGGamma.Cmt}}}}
*{{Template:WeibullGeneralOptions.AllowBiasingNormal|AllowBiasingNormal}} {{APIComment|{{Template:WeibullGeneralOptions.AllowBiasingNormal.Cmt}}}}
*{{Template:WeibullGeneralOptions.AllowBiasingNormal|AllowBiasingNormal}} {{APIComment|{{Template:WeibullGeneralOptions.AllowBiasingNormal.Cmt}}}}

Revision as of 20:35, 6 February 2014



This class describes various settings for WeibullDataSet's GeneralSettings.

Properties

  • WarnNegLocation As Boolean Sets whether a warning will be generated when the location parameter contains a negative value.
  • DiscardNegLocationAs Boolean Sets whether to discard the location parameter when it contains a negative value.
  • ResetExpLocation As Boolean Sets whether to reset the value of the location parameter equal to the first failure time, T1, if the parameter is greater than T1. (Exponential distribution only.)
  • Use3PTrueMLE As Boolean Sets whether to use a true 3-parameter MLE solution for 3-parameter Weibull.
  • UseExtendedGGamma As Boolean Sets whether to allow the lambda parameter of the generalized gamma distribution to take negative values.
  • AllowBiasingNormal As Boolean Sets whether to correct the MLE standard deviation (sigma) value for biasedness (complete data only).
  • UsePlottedYPoints As Boolean Sets whether to use the plotted points (using median ranks or Kaplan-Meier) to calculate the difference between observed and model estimated probability for the Kolmogorov-Smirnov test.

Formatted Usage Example

Declare the WeibullDataSet. See New WeibullDataSet for additional details.

       Dim WDS as New WeibullDataSet

Set various settings.

       WDS.GeneralSettings.AllowBiasingNormal = False
       WDS.GeneralSettings.DiscardNegLocation = False
       WDS.GeneralSettings.ResetExpLocation = True
       WDS.GeneralSettings.Use3PTrueMLE = False
       WDS.GeneralSettings.UseExtendedGGamma = False
       WDS.GeneralSettings.UsePlottedYPoints = False
       WDS.GeneralSettings.WarnNegLocation = False