WeibullDataSet 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 9: | Line 9: | ||
*'''[[WeibullDataSet.AddFailure|AddFailure]]''' {{APIComment|{{Template:WeibullDataSet.AddFailure.Cmt}}}} | *'''[[WeibullDataSet.AddFailure|AddFailure]]''' {{APIComment|{{Template:WeibullDataSet.AddFailure.Cmt}}}} | ||
*'''[[WeibullDataSet.AddSuspension|AddSuspension]]''' {{APIComment|Adds a suspension data point to the collection of data points in the data set.}} | *'''[[WeibullDataSet.AddSuspension|AddSuspension]]''' {{APIComment|Adds a suspension data point to the collection of data points in the data set.}} | ||
*'''[[WeibullDataSet.AddFailureInterval|AddFailureInterval]]''' {{APIComment| | *'''[[WeibullDataSet.AddFailureInterval|AddFailureInterval]]''' {{APIComment|{{Template:WeibullDataSet.AddFailureInterval.Cmt}}}} | ||
*'''[[WeibullDataSet.AddSuspensionInterval|AddSuspensionInterval]]''' {{APIComment|Adds a suspension interval data point to the collection of data points in the data set.}} | *'''[[WeibullDataSet.AddSuspensionInterval|AddSuspensionInterval]]''' {{APIComment|Adds a suspension interval data point to the collection of data points in the data set.}} | ||
*'''[[WeibullDataSet.AddFreeForm|AddFreeForm]]''' {{APIComment|Adds a free-form data point to the collection of data points in the data set.}} | *'''[[WeibullDataSet.AddFreeForm|AddFreeForm]]''' {{APIComment|Adds a free-form data point to the collection of data points in the data set.}} |
Revision as of 17:09, 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 a suspension data point to the collection of data points in the data set.
- 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 a suspension interval data point to the collection of data points in the data set.
- AddFreeForm Adds a free-form data point to the collection of data points in the data set.
- Calculate Fits a model from the raw data previously entered in the data set. Sets FittedModel property if successful. Clears it (sets to Nothing) in case of an error.
- CalculateBestFit Finds the distribution that fits the data best. Sets FittedModel property if successful. Clears it (sets to Nothing) in case of an error.
- ClearDataSet Clears all data and fitted model. All analysis settings stay unchanged.
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.