WeibullSolverMethod Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullDataSet_Class|WeibullDataSet}}
{{Template:APIClass|WeibullDataSet_Class|WeibullDataSet}}
Contains methods for estimating the parameters of the selected distribution (e.g., rank regression on X).
Specifies the method for estimating the parameters of the selected distribution (e.g., rank regression on X).


== Members ==
== Members ==

Revision as of 21:51, 24 February 2014


Specifies the method for estimating the parameters of the selected distribution (e.g., rank regression on X).

Members

  • RRX Rank regression on X (RRX)
  • RRY Rank regression on Y (RRY)
  • MLE Maximum likelihood estimation (MLE)

Usage Example

Declare a WeibullDataSet object.

       Dim WDS as New WeibullDataSet

Set Weibull as the distribution for analysis.

       WDS.AnalysisSettings.Distribution = WeibullSolverDistribution.Weibull

Specify that the 2-parameter Weibull distribution will be used.

       WDS.AnalysisSettings.Parameters = WeibullSolverNumParameters.MS_2Parameter

Set MLE as the method that will be used to estimate the parameters.

       WDS.AnalysisSettings.Analysis = WeibullSolverMethod.MLE