WeibullSolverMethod Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
*RRY        {{APIComment|Rank regression on Y (RRY)}}
*RRY        {{APIComment|Rank regression on Y (RRY)}}
*MLE        {{APIComment|Maximum likelihood estimation (MLE)}}
*MLE        {{APIComment|Maximum likelihood estimation (MLE)}}
== Usage Example ==
{{APIComment|Declare a WeibullDataSet object.}}
        Dim WDS as New [[WeibullDataSet Class|WeibullDataSet]]
{{APIComment|Set Weibull as the distribution for analysis.}}
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Distribution|Distribution]] = [[WeibullSolverDistribution]].Weibull
{{APIComment|Specify that the 2-parameter Weibull distribution will be used.}}
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Parameters|Parameters]] = [[WeibullSolverNumParameters]].MS_2Parameter
{{APIComment|Set MLE as the method that will be used to estimate the parameters.}}
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Analysis|Analysis]] = [[WeibullSolverMethod]].MLE

Revision as of 23:43, 2 May 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)