Пример #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 plotBifurcationDiagram (self, bfPoints, bfLabels):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotBifurcationData(npData, hdr, bfPoints, bfLabels)
Пример #3
0
 def plot (self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)
Пример #4
0
 def plot(self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)
Пример #5
0
 def getColumnHeaders(self):
     value = tpc.getTelluriumDataColumnHeader(self._data)
     if value == None:
         value = []
     return value