Re: [Matplotlib-users] 1d heat map

2011-07-21 Thread Yoshi Rokuko
what are you using right now, something like that? >>> a = np.random.random(70) >>> x = np.empty([10,a.shape[0]]) >>> x[:,:] = a >>> pl.contourf(x) you might want to suppress ticks on the y-axis. best regards, yoshi --

Re: [Matplotlib-users] 1d heat map

2011-07-20 Thread Benjamin Root
On Wed, Jul 20, 2011 at 12:15 PM, Pete Shepard wrote: > Hello List, > > I am trying to use the pylab.contourf(X,Y,Z,100) function but I would like > to mplot a 1 dimensional heatmap instead of a 2 dimensional heatmap, Perhaps > "contourf" is not the solution but I do like these plots. > > Any sugg