DataSeries class for handling roadrunner data types.
More...
|
| data = property(__getHandle) |
|
| toNumpy = property(__toNumpy) |
| Return a numpy array from a data series. More...
|
|
| rows = property(__getNumberOfRows) |
| Return the number of rows in the data series. More...
|
|
| cols = property(__getNumberOfColumns) |
| Return the number of columns in the data series. More...
|
|
DataSeries class for handling roadrunner data types.
def __init__ |
( |
|
self, |
|
|
|
handle = None , |
|
|
|
myData = False |
|
) |
| |
def getColumnHeaders |
( |
|
self) | |
|
Retrieve the column headers as a list.
1 print d.getColumnHeaders()
def getElement |
( |
|
self, |
|
|
|
row, |
|
|
|
col |
|
) |
| |
Get a specific element from a dataseries.
1 print d.getElement (1,2)
def getWeight |
( |
|
self, |
|
|
|
row, |
|
|
|
col |
|
) |
| |
Get the weight for a specific data element.
1 print d.getWeight (1,2)
Plot a dataseries as a graph.
def plotBifurcationDiagram |
( |
|
self, |
|
|
|
bfPoints, |
|
|
|
bfLabels |
|
) |
| |
Plot a dataseries using Bifurcation additional data as input.
def readDataSeries |
( |
|
cls, |
|
|
|
fileName |
|
) |
| |
Read a dataseries from a file.
1 d.readDataSeries (
"myDataSeries.txt")
def setElement |
( |
|
self, |
|
|
|
row, |
|
|
|
col, |
|
|
|
value |
|
) |
| |
Set a specific element.
1 d.setElement (1,2, 3.1415)
def setWeight |
( |
|
self, |
|
|
|
row, |
|
|
|
col, |
|
|
|
value |
|
) |
| |
Set a specific element.
1 d.setElement (1,2, 3.1415)
def writeDataSeries |
( |
|
self, |
|
|
|
fileName |
|
) |
| |
Write a dataseries to a file.
1 d.writeDataSeries (
"myDataSeries.txt")
cols = property(__getNumberOfColumns) |
|
static |
Return the number of columns in the data series.
rows = property(__getNumberOfRows) |
|
static |
Return the number of rows in the data series.
toNumpy = property(__toNumpy) |
|
static |
Return a numpy array from a data series.
The documentation for this class was generated from the following file: