Home | History | Annotate | Download | only in tko

Lines Matching refs:matplotlib

7 # When you import matplotlib, it tries to write some temp files for better
10 # writable when running under Apache, and matplotlib's not smart enough to
15 '.matplotlib-%s' % getpass.getuser())
21 import matplotlib
22 matplotlib.use('Agg')
23 import matplotlib.figure, matplotlib.backends.backend_agg
167 Creates an instance of matplotlib.figure.Figure, given the height in inches.
171 fig = matplotlib.figure.Figure(
242 # matplotlib before we start calling transform(); otherwise, it will return
276 font_properties = matplotlib.font_manager.FontProperties(
282 # Workaround for matplotlib not keeping all line markers in the legend -
283 # it seems if we don't do this, matplotlib won't keep all the line
336 # width here is the width for each bar in the plot. Matplotlib default is
360 # Let matplotlib plot the data, so that we can get the data-to-image
433 Given the matplotlib figure, generate the PNG data for it.
437 canvas = matplotlib.backends.backend_agg.FigureCanvasAgg(figure)