Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have numpy array with this shape: (33,10). When I plot contour I get ugly image like this: enter image description here

while contour() doesn't seem to have any argument about smoothing or some sort of interpolation feature.

I guess no one will use this kind of plot even for intermediate results, and I somehow expected that tool which offers contour plot should offer smoothing too.
Is there straight forward way to do it in MPL?

share|improve this question

4 Answers

up vote 13 down vote accepted

As others have already pointed out, you need to interpolate your data.

There are a number of different ways to do this, but for starters, consider scipy.ndimage.zoom.

As a quick exmaple:

import numpy as np
import scipy.ndimage
import matplotlib.pyplot as plt

data = np.loadtxt('data.txt')

# Resample your data grid by a factor of 3 using cubic spline interpolation.
data = scipy.ndimage.zoom(data, 3)

plt.contour(data)
plt.show()

enter image description here

share|improve this answer
Wow! you always come up with something that I haven't heard before. – imsc Sep 7 '12 at 8:42
1  
I just spend way too much time trying to make my figures as pretty as possible... Which probably explains why I never finish things on time! :) – Joe Kington Sep 7 '12 at 14:46

Try to smooth your dataset with a gaussian_filter. See example for more info.

share|improve this answer
First example is for line plot and second is for image, so none is applicable to contour plot. Or maybe I'm wrong and overwhelmed by how complicated this turns to be? – theta Sep 5 '12 at 5:18
could you upload the original data set and your script at public hosting? – ymn Sep 5 '12 at 5:25
Sure, here it is data.txt. Just in case, plot it with plt.contour(numpy.loadtxt('data.txt')) – theta Sep 5 '12 at 5:35
Try to use contourf() instead of contour() – ymn Sep 5 '12 at 5:49
2  
I think ymn is right but you may also need to resample data to get some interpolated points between your data points. If your sampling is too coarse there's so much the plotting utility can do. – Taro Sato Sep 5 '12 at 10:00
show 1 more comment

There is no easy way to get a smooth contour. An alternative is to try imshow. You can look here for other possibilities.

import pylab as plt
import numpy as np

Z=np.loadtxt('data.txt')
plt.subplot(131)
plt.imshow(Z,interpolation='nearest')

plt.subplot(132)
plt.imshow(Z)

plt.subplot(133)
plt.imshow(Z,interpolation='gaussian')

plt.show()

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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