I have a PathCollection with a lot of closed paths. I'm trying to
implement a "data cursor" as described here:
http://stackoverflow.com/questions/4652439/is-there-a-matplotlib-equivalent-of-matlabs-datacursormode
. I've done this successfuly in the past when the objects I wanted to
p
2013/1/9 Goyo :
> I'm using matplotlib master from
> https://launchpad.net/%7Etakluyver/+archive/matplotlib-daily, ubuntu
> 12.10 and python 2.7 and sometimes I get misplaced y labels for twinx
> plots. I file a bug at github with a sample script and figure images:
> https://github.com/matplotlib/m
Since this is specific to Windows 8, I wonder if the Arial font has been
updated in that version. If it's a newer OTF font, rather than a TTF
font, it's possible matplotlib can't read it correctly.
You can see what font file is on each platform by starting up a Python
prompt and doing:
>>
Yes, you are absolutely correct. I did not realize that I did not actually
evaluate the function over a grid, makes sense that interpolation fails. I
thought that since I created the two axis vectors the function evaluation
occurs over the entire domain, meshgrid is what I was missing.
thanks,