|
From: <ole...@gm...> - 2012-02-14 17:49:51
|
Jerzy Karczmarczuk <jer...@un...> writes: > Could you provide a /working/ example with the geometry you really want? > I believe I thought more or less about it as Tony Yu did. If it is > wrong, be more precise, please. I have a data set that looks like this: mydata = numpy.copy([ # lambda, data # First data row [[5002., 0.5], [5200., 0.34], [5251., -1.2], # ... [8997., 2.4]], # second data row [[5002., 0.72], [5251., 0.9], # ... [8997., 0.1]], # other data rows to follow # ... ]) where I want to put the first column (lambda) on the Y axis, which each data row as one colorbar (like in your code), and the data as the color of that data point -- interpolated vertically. Best regards Ole |