I am using code written by a former employee. In this code, the person performs a plot on Python using Qt. I'm trying to add a colorbar and contour maps, but to no avail. Here's part of the code that's relevant.
#IMPORTS
from matplotlib.figure import Figure
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
#SETUP
fig = Figure()
axes = fig.add_subplot(111)
canvas = FigureCanvas(fig)
#DRAWING
axes.clear()
axes.imshow(data_and_extents, interpolation='bilinear')
axes.autoscale(False)
canvas.draw()
#TODO: Add colorbar and contour maps with some values
I have tried axes.colorbar() to no avail. How do I add colorbars and contour maps to surface plots set up like this?
Thanks SOCommunity!
from matplotlib.figure import Figure– halex Aug 31 '12 at 18:08fig.colorbarinstead ofaxes.colorbar– halex Aug 31 '12 at 18:15cbar = fig.colorbar(axes)– halex Aug 31 '12 at 18:24