Re: [Matplotlib-users] Cannot find test_backend_svg and others while running tests.py

2012-05-18 Thread Michael Droettboom
I think having only the one failure (and one from a test that is quite new) is pretty good. I'm not sure why that test is failing -- is it possible it's testing with an earlier checkout using tests from a newer checkout. This would happen, for example, if running the tests from the matplotlib

[Matplotlib-users] ANN: basemap toolkit 1.0.3

2012-05-18 Thread Jeff Whitaker
Available for download at https://sourceforge.net/projects/matplotlib/files/matplotlib-toolkits/basemap-1.0.3/ Thanks to Christoph Gohlke for making windows installers. Highlights: - new 'round' keyword for polar-centric plots (see polarmaps.py example). - the coastline filling bug has now

Re: [Matplotlib-users] hexbin difference map

2012-05-18 Thread Erik Tollerud
Just do something like this: newx = concatenate((c_b211_jmk,c_b204_jmk)) newy = concatenate((c_b211_k, c_b204_k)) newc = concatenate((ones(c_b211_k.size),-1*ones_like(c_b204_k.size))) hexbin(newx,newy,C=newc,reduce_C_function=np.sum) Then the color coding in each bin should be the number of coun