WAPlots.AddDataset: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) m (Protected "WAPlots.AddDataset" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]) |
John Leavitt (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|WAPlots Class|WAPlots}} | {{Template:APIClass|WAPlots Class|WAPlots}} | ||
Add a WeibullDataSet or ALTADataSet to the WAPlot Class. | Add a [[WeibullDataSet Class|WeibullDataSet]] or [[ALTADataSet Class|ALTADataSet]] to the WAPlot Class. | ||
== Weibull Method Syntax == | == Weibull Method Syntax == |
Revision as of 23:20, 22 January 2014
Add a WeibullDataSet or ALTADataSet to the WAPlot Class.
Weibull Method Syntax
AddDataSet( ByVal DataSet As WeibullDataSet )
Adds Weibull data set for subsequent plotting.
ALTA Method Syntax
AddDataSet( ByVal DataSet As ALTADataSet )
Adds ALTA data set for subsequent plotting.
Parameters
DataSet The variable name of the WeibullDataSet or ALTADataSet object to add to the collection.
Usage Example
Create a new Weibull/ALTA Plot instance.
Dim WeibullALTAPlot As New WAPlots
Declare a WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data. See AddFailure for additional details.
WDS.AddFailure(1, 1) WDS.AddFailure(2, 1) WDS.AddFailure(3, 1)
Add the WeibullDataSet to the WAPlots.
WeibullALTAPlot.AddDataset(WDS)