WeibullAnalysisResults Class: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
John Leavitt (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
== Properties== | == Properties== | ||
{{Template:WeibullAnalysisResults.CorrelationCoefficient}}{{APIComment|{{Template:WeibullAnalysisResults.CorrelationCoefficient.Cmt}}}} | *{{Template:WeibullAnalysisResults.CorrelationCoefficient}}{{APIComment|{{Template:WeibullAnalysisResults.CorrelationCoefficient.Cmt}}}} | ||
*'''[[WeibullAnalysisResults.CorrelationCoefficient|CorrelationCoefficient]]'''{{APIComment|{{Template:WeibullAnalysisResults.CorrelationCoefficient.Cmt}}}} | *'''[[WeibullAnalysisResults.CorrelationCoefficient|CorrelationCoefficient]]'''{{APIComment|{{Template:WeibullAnalysisResults.CorrelationCoefficient.Cmt}}}} |
Revision as of 18:58, 6 February 2014
the correlation coefficient, likelihood value and percent non-zero values that were estimated from the analysis, if applicable. These are equivalent to the "Rho," "LK Value" and "Pnz" results that can be shown in the Analysis Summary of the standard folio control panel.
Use the WeibullDataSet.AnalysisResults method to access these results.
Properties
- CorrelationCoefficient As Double The correlation coefficient value (Rho).
- CorrelationCoefficient The correlation coefficient value (Rho).
- LikelihoodValue The likelihood value (LK Value).
- PercentNonZero The percent non-zero value (Pnz).
Formatted Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data. See AddFailure for additional details.
WDS.AddFailure(1, 1) WDS.AddFailure(2, 1) WDS.AddFailure(3, 1)
Calculate the WeibullDataSet. See CalculateBestFit for additional details.
WDS.Calculate
Retrieve the results. In this example, the correlation coefficient result value is retrieved.
Dim CorrCoeff As Double CorrCoeff = WDS.AnalysisResults.CorrelationCoefficient