[Matplotlib-users] bug in fill_between?

2011-02-21 Thread John
Hello, I'm trying to use fill_between in the following script: [code] #!/usr/bin/env python import numpy as np import matplotlib.pyplot as plt import matplotlib as mpl import pdb from jfb import readcsv #D = np.loadtxt('lat_sectors.csv',skiprows=1,delimiter=',') head,D =

Re: [Matplotlib-users] Bug in Fill_Between?

2009-02-27 Thread Michael Droettboom
There are obviously geometric solutions to this that wouldn't require interpolation -- though the interpolation is a good easy workaround. I think it would be great to file a bug for this in the tracker so it doesn't get forgotten. Mike Ryan Wagner wrote: Is this a bug in fill_between, or

Re: [Matplotlib-users] Bug in Fill_Between?

2009-02-26 Thread Ryan Wagner
Just a follow-up: I managed to interpolate this problem away... interpolated = [] iinds = [] for i in range(len(stockData.rinds)-1): interpolated.append(s[stockData.rinds[i]]) iinds.append(stockData.inds[i])