AddQQPlot Method
The AddQQPlot method adds a Q-Q plot to an existing QQ graph, equivalent to Graph | Add to Graph | Plot. Returns an AutoQQPlot object.
Syntax
object.AddQQPlot( worksheet, XCol, YCol, id )
| Parameter | Type | Description |
| worksheet | String | required, data's full path and file name |
| XCol | Variant | optional, X column, default = 1 (column A) |
| YCol | Variant | optional, Y column, default = 2 (column B) |
| xAxis | Variant | optional, ID of X axis to use for plot (default = uses first X axis in graph) |
| yAxis | Variant | optional, ID of Y axis to use for plot (default = uses first Y axis in graph) |
| id | Variant | optional, plot name |
Remarks
2D graphs can only be added to other 2D graphs.
Example
This example shows how to add a Q-Q plot.
Graph1.AddQQPlot(GrapherApp.Path + "\samples\box plot.dat", 1, 7, "X Axis 1", "Y Axis 1")
Used by: AutoGraph object
See Also