WeibullSolverMethod 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 4: | Line 4: | ||
== Members == | == Members == | ||
*RRX {{APIComment|Rank | *RRX {{APIComment|Rank regression on X (RRX)}} | ||
*RRY {{APIComment|Rank | *RRY {{APIComment|Rank regression on Y (RRY)}} | ||
*MLE {{APIComment|Maximum | *MLE {{APIComment|Maximum likelihood estimation (MLE)}} | ||
== Usage Example == | == Usage Example == |
Revision as of 16:40, 21 February 2014
Contains different methods for estimating the parameters of the selected distribution (e.g., rank regression 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