Example #1
0
 def _frame_off(self, axarr, icol, nrows):
     while True:
         try:
             icol += 1
             for irow in xrange(nrows):
                 plots.empty_figure(axarr[irow, icol], text=None)
         except IndexError:
             break
Example #2
0
 def _frame_off(self, axarr, icol, nrows):
     while True:
         try:
             icol += 1
             for irow in xrange(nrows):
                 plots.empty_figure(axarr[irow, icol], text=None)
         except IndexError:
             break
Example #3
0
 def _empty_figure(self, axarr, name, i, nrows=5):
     for k in xrange(nrows):
         if k == 0:
             plots.empty_figure(axarr[k][i], title="%s (0 tracks)" %name)
         else:
             plots.empty_figure(axarr[k][i])
Example #4
0
 def _empty_figure(self, axarr, name, i, nrows=5):
     for k in xrange(nrows):
         if k == 0:
             plots.empty_figure(axarr[k][i], title="%s (0 tracks)" % name)
         else:
             plots.empty_figure(axarr[k][i])