WeibullDataSet.ClearDataSet: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) mNo edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Template: | {{Template:API}}{{Template:APIBreadcrumb|.[[WeibullDataSet Class|WeibullDataSet]]}} | ||
<onlyinclude>Clears all data in the data set and removes the fitted model, if any. </onlyinclude> | |||
== Syntax == | == Syntax == | ||
'''.ClearDataSet''' | |||
== | == Example == | ||
'''VBA''' | |||
{{APIComment|'Declare a new WeibullDataSet object.}} | |||
{{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
{{APIComment|'Add the failure times 10, 20 and 30 to the data set.}} | |||
{{APIPrefix|Call}} WDS.AddFailure(10, 1) | |||
{{APIPrefix|Call}} WDS.AddFailure(20, 1) | |||
{{APIPrefix|Call}} WDS.AddFailure(30, 1) | |||
{{APIComment|'Fit the data to a life distribution.}} | |||
WDS.CalculateBestFit | |||
{{APIComment|'Retrieve the fitted distribution model.}} | |||
{{APIPrefix|Dim}} WDSFittedModel {{APIPrefix|as}} cModel | |||
{{APIPrefix|Set}} WDSFittedModel = WDS.FittedModel | |||
{{APIComment|'Clear the data set and fitted model.}} | |||
WDS.ClearDataSet | |||
{{APIComment|'Declare a new WeibullDataSet object | '''VB.NET''' | ||
{{APIComment|'Declare a new WeibullDataSet object.}} | |||
{{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
{{APIComment|'Add the failure times 10, 20 and 30 to the data set.}} | |||
WDS.AddFailure(10, 1) | |||
WDS.AddFailure(20, 1) | |||
WDS.AddFailure(30, 1) | |||
{{APIComment|'Fit the data to a life distribution.}} | {{APIComment|'Fit the data to a life distribution.}} | ||
WDS.CalculateBestFit | |||
{{APIComment|'Retrieve the fitted distribution model.}} | {{APIComment|'Retrieve the fitted distribution model.}} | ||
{{APIPrefix|Dim}} WDSFittedModel {{APIPrefix|as}} cModel | |||
WDSFittedModel = WDS.FittedModel | |||
{{APIComment|'Clear the data set and fitted model.}} | |||
WDS.ClearDataSet |
Latest revision as of 17:40, 19 April 2016
Member of: SynthesisAPI.WeibullDataSet
Clears all data in the data set and removes the fitted model, if any.
Syntax
.ClearDataSet
Example
VBA 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add the failure times 10, 20 and 30 to the data set. Call WDS.AddFailure(10, 1) Call WDS.AddFailure(20, 1) Call WDS.AddFailure(30, 1) 'Fit the data to a life distribution. WDS.CalculateBestFit 'Retrieve the fitted distribution model. Dim WDSFittedModel as cModel Set WDSFittedModel = WDS.FittedModel 'Clear the data set and fitted model. WDS.ClearDataSet
VB.NET 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add the failure times 10, 20 and 30 to the data set. WDS.AddFailure(10, 1) WDS.AddFailure(20, 1) WDS.AddFailure(30, 1) 'Fit the data to a life distribution. WDS.CalculateBestFit 'Retrieve the fitted distribution model. Dim WDSFittedModel as cModel WDSFittedModel = WDS.FittedModel 'Clear the data set and fitted model. WDS.ClearDataSet