vote up 0 vote down star

I'm plotting several contour plots side by side for visualizing the time evolution of certain function. I want each contour's value and color to be shared between all subplots, but each time I add a new subplot, the contour values are recomputed (as shown in the image below), so any comparison between them is meaningless.

Contour plots with colorbars

I've tried setting manually different combinations of cmap, colorbar and axes attributes on each subplot instance, without success. How can I share the contour plot attributes between all the subplots? In other words, how to get the same colorbar for all subplots?

flag

1 Answer

vote up 1 vote down check

You can directly specify the contour values to be used in the contour plot. Here's an example:

alt text

import numpy as np
import matplotlib.pyplot as plt

x = np.arange(-1.2, 1.2, .025)
y = np.arange(-1.2, 1.2, .025)
X, Y = np.meshgrid(x, y)
Z = np.cos(X)*np.cos(Y)
Z = Z*Z

plt.subplot(1,2,1)
CS = plt.contour(X, Y, Z)   # set levels automatically
plt.clabel(CS, inline=1, fontsize=10)
plt.subplot(1,2,2)
CS = plt.contour(X, Y, Z-.1, CS.levels)  # set levels as previous levels
plt.clabel(CS, inline=1, fontsize=10)
plt.show()
link|flag
Thanks Tom, this is a sensible approach, but I'd rather have the values automatically computed, because I'll be plotting several different functions with different value ranges. If there are no further responses, I'll go with this solution and compute the values myself by finding the min and max values among all arrays. – Roberto Bonvallet Oct 29 at 15:49
That's just a small change. I'll update my answer. – tom10 Oct 29 at 16:02
Thanks! I had overlooked the levels attribute. Now it works :) – Roberto Bonvallet Oct 30 at 13:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.