AutoQQPlot Object

The AutoQQPlot object represents the Q-Q plot.

Derived from: AutoLinePlot object (All methods and properties of AutoLinePlot apply to this object.)

Properties

InterpolationFactor

Example

The following script demonstrates how the AutoQQPlot object is used.

Sub Main

 

'Declares GrapherApp as an object

  Dim GrapherApp As Object

 

'Creates an instance of the Grapher Application object

 'and assigns it to the variable named "GrapherApp"

  Set GrapherApp = CreateObject("Grapher.Application")

 

 'Makes Grapher visible

  GrapherApp.Visible = True

 

 'Creates a plot document in Grapher and assigns

 'it to the variable named "Plot"

  Set Plot = GrapherApp.Documents.Add(grfPlotDoc)

 

 'Declares Graph as an object

  Dim Graph As Object

 

'Create a QQ plot

Set Graph = Plot.Shapes.AddQQPlotGraph("C:\Program Files\Golden Software\Grapher\Samples\box plot.DAT",1,2)

 

'Set the QQ plot to the Q_QPlot object

Set Q_QPlot = Graph.Plots.Item(1)

End Sub