makeXYGraph(dataset1,
dataset2,
...,
**kwargs)
| source code
|
makeXYGraph(L{DataSetMatrix}, ..., **kwargs) -> L{empro.graphing.Graph}
makeXYGraph(L{CitiFile}, ..., **kwargs) -> L{empro.graphing.Graph}
returns a XY graph of one or more datasets, dataset matrice or citi files.
Optional keyword arguments are:
- graph: if specified the plot is added to the graph, else a new graph is created
- title: string to be displayed as title of graph
- names: sequence of dataset names to be used in legend.
- xUnit, yUnit: unit per axis
- xBounds, yBounds: (min, max) bounds per axis.
- xLabel, yLabel: caption per axis.
- Returns:
empro.graphing.Graph
|