WeibullDataSet.CalculateBestFit: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
m (Protected "WeibullDataSet.CalculateBestFit" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
 
{{Template:WeibullDataSet.CalculateBestFit.Cmt}}
Runs the calculation and finds a distribution model that best fits the data in the WeibullDataSet.  


== Method Syntax==
== Method Syntax==
{{APIName|'''CalculateBestFit'''()}}<br>
{{APIName|'''CalculateBestFit'''()}}<br>
{{APIComment|Finds the distribution that fits the data best. Sets Fitted Model property if successful. Clears it (sets to Nothing) in case of an error.}}
 


== Usage Example ==
== Usage Example ==

Revision as of 17:36, 29 January 2014


Automatically finds the best fitting distribution and fits that distribution to the current data set using the settings specified in the BestFitSettings property.

Method 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