WeibullDataSet.AddSuspensionInterval: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
{{Template:WeibullDataSet.AddSuspensionInterval.Cmt}} | {{Template:WeibullDataSet.AddSuspensionInterval.Cmt}} | ||
== | == Syntax == | ||
{{Template:WeibullDataSet.AddSuspensionInterval}} | {{Template:WeibullDataSet.AddSuspensionInterval}} | ||
Parameters | |||
''' | :''StartValue'': The starting value of this suspension interval. | ||
The starting value of this suspension interval. | :''EndValue'': The ending value of this suspension interval. | ||
:''NumberInGroup'': The number of units that were suspended during this interval. | |||
The ending value of this suspension interval. | |||
The number of units that were suspended during this interval. | |||
== Usage Example == | == Usage Example == |
Revision as of 18:53, 11 February 2014
Adds interval censored suspensions to the data set, using the specified start/end times and number of suspensions for that interval.
Syntax
AddSuspensionInterval(ByValStartValueAs Double,ByValEndValueAs Double,ByValNumberInGroupAs Integer)
Parameters
- StartValue: The starting value of this suspension interval.
- EndValue: The ending value of this suspension interval.
- NumberInGroup: The number of units that were suspended during this interval.
Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data.
WDS.AddSuspensionInterval(1, 5, 1) WDS.AddSuspensionInterval(6, 10, 1) WDS.AddSuspensionInterval(11, 15, 1)