WeibullDataSet Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 13: Line 13:
*'''[[WeibullDataSet.Calculate|Calculate]]''' {{APIComment|{{Template:WeibullDataSet.Calculate.Cmt}}}}
*'''[[WeibullDataSet.Calculate|Calculate]]''' {{APIComment|{{Template:WeibullDataSet.Calculate.Cmt}}}}
*'''[[WeibullDataSet.CalculateBestFit|CalculateBestFit]]''' {{APIComment|{{Template:WeibullDataSet.CalculateBestFit.Cmt}}}}
*'''[[WeibullDataSet.CalculateBestFit|CalculateBestFit]]''' {{APIComment|{{Template:WeibullDataSet.CalculateBestFit.Cmt}}}}
*'''[[WeibullDataSet.ClearDataSet|ClearDataSet]]''' {{APIComment|Clears all data and fitted model. All analysis settings stay unchanged.}}
*'''[[WeibullDataSet.ClearDataSet|ClearDataSet]]''' {{APIComment|{{Template:WeibullDataSet.ClearDataSet.Cmt}}}}


== Properties  ==
== Properties  ==

Revision as of 17:37, 29 January 2014


Instantiate this class to be able to fit a Weibull model from your raw data.

Constructors

  • New WeibullDataSet Creates a new class that can be used to fit a model from Weibull raw data.

Methods

  • AddFailure Adds failure times to the data set, using the specified time and number of failures at that time.
  • AddSuspension Adds suspensions to the data set, using the specified time and number of suspensions at that time.
  • AddFailureInterval Adds interval censored failures to the data set, using the specified start/end times and number of failures that occurred within the interval.
  • AddSuspensionInterval Adds interval censored suspensions to the data set, using the specified start/end times and number of suspensions for that interval.
  • AddFreeForm Adds a free-form data point to the data set, using the specified time and percentage values.
  • Calculate Fits the distribution to the current data set using the settings specified in the AnalysisSettings property.
  • CalculateBestFit Automatically finds the best fitting distribution and fits that distribution to the current data set using the settings specified in the BestFitSettings property.
  • ClearDataSet Clears all data in the data set and removes the fitted model, if any.

Properties

  • AnalysisResults Returns an instance of a class containing values calculated during the analysis.
  • DatasetName Gets or sets the name of the data set.
  • GeneralSettings General settings used when fitting the model or finding the best fit.
  • AnalysisSettings Settings used when fitting the model.
  • BestFitSettings Settings used when fitting the model or finding the best fit.
  • FittedModel Model, fitted from the raw data. See cModel class for the list of its methods below.
  • FailureCount Total number of failures in the data set.
  • SuspensionCount Total number of suspensions in the data set.

Events

  • Events Reference to a class that contains overridable methods for handling Weibull solver events.