WAPlots Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 27: Line 27:
   WDS.AddFailure(3, 1)
   WDS.AddFailure(3, 1)
    
    
  {{APIComment|'Add the WeibullDataSet to the WAPlots.}}
  {{APIComment|'Specify that the will be based on the WDS data set.}}
   WeibullALTAPlot.AddDataset(WDS)
   WeibullALTAPlot.AddDataset(WDS)
   
   
  {{APIComment|'Create a Probability plot. See [[WAPlotType Enumeration|WAPlotType]] for plot types.}}
  {{APIComment|'Create a Probability plot. See [[WAPlotType Enumeration|WAPlotType]] for plot types.}}
   Dim FinalPlot As Bitmap = WeibullALTAPlot.CreatePlot(WAPlotType.Probability)
   Dim FinalPlot As Bitmap = WeibullALTAPlot.CreatePlot(WAPlotType.Probability)

Revision as of 17:08, 28 April 2014


Creates a plot based on a fitted model in a WeibullDataSet or ALTADataSet object.

Constructors

  • WAPlots Creates a new WAPlots object.

Methods

Properties

  • ErrorHappened (as boolean) Whether an error happened during the creation of the plot.
  • ErrorMessage (as string) The error that happened during the creation of the plot. Set only if ErrorHappened is true.

Usage Example

 'Create a new Weibull/ALTA Plot instance. See CreatePlot.  
 Dim WeibullALTAPlot As New WAPlots
 
 'Declare a WeibullDataSet. See WeibullDataSet. 
 Dim WDS As New WeibullDataSet
 
 'Add values to the raw data. See AddFailure. 
 WDS.AddFailure(1, 1)
 WDS.AddFailure(2, 1)
 WDS.AddFailure(3, 1)
 
 'Specify that the will be based on the WDS data set. 
 WeibullALTAPlot.AddDataset(WDS)

 'Create a Probability plot. See WAPlotType for plot types. 
 Dim FinalPlot As Bitmap = WeibullALTAPlot.CreatePlot(WAPlotType.Probability)