WeibullDataSet.CalculateBestFit: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | {{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | ||
{{Template:WeibullDataSet.CalculateBestFit.Cmt}} This is equivalent to clicking the '''Implement''' button in the Distribution Wizard. | {{Template:WeibullDataSet.CalculateBestFit.Cmt}} | ||
This is equivalent to clicking the '''Implement''' button in the Distribution Wizard. | |||
== Syntax == | == Syntax == | ||
*CalculateBestFit() | |||
== Usage Example == | == Usage Example == |
Revision as of 17:49, 20 February 2014
Automatically finds the best fitting distribution and fits that distribution to the current data set using the settings specified in the BestFitSettings property. This is equivalent to clicking the Implement button in the Distribution Wizard.
Syntax
- CalculateBestFit()
Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data. See WeibullDataSet.AddFailure for additional details.
WDS.AddFailure(1, 1) WDS.AddFailure(2, 1) WDS.AddFailure(3, 1)
Calculate the Fitted Model using the raw data.
WDS.CalculateBestFit
Use the Fitted Model using the raw data.
Dim WDSFittedModel as cModel WDSFittedModel = WDS.FittedModel