示例#1
0
 def plotBifurcationDiagram(self,
                            bfPoints,
                            bfLabels,
                            legend=True,
                            cmap=None,
                            xlabel=None,
                            ylabel=None,
                            selections=None):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotBifurcationData(npData, hdr, bfPoints, bfLabels, legend, cmap,
                             xlabel, ylabel, selections)
示例#2
0
 def __toNumpy (self):
     return tpc.getNumpyData (self._data)
示例#3
0
 def loadDataSeriesAsNumPy (self, fileName):
     rrDataHandle = tpc.createTelluriumDataFromFile (fileName)
     return tpc.getNumpyData (rrDataHandle)
示例#4
0
 def plotBifurcationDiagram (self, bfPoints, bfLabels):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotBifurcationData(npData, hdr, bfPoints, bfLabels)
示例#5
0
 def plot (self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)
示例#6
0
 def __toNumpy(self):
     return tpc.getNumpyData(self._data)
示例#7
0
 def loadDataSeriesAsNumPy(self, fileName):
     rrDataHandle = tpc.createTelluriumDataFromFile(fileName)
     return tpc.getNumpyData(rrDataHandle)
示例#8
0
 def plot(self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)