[Matplotlib-users] arangement / merge of multiple figures /list of figures

2008-03-12 Thread Dirk Zickermann
Dear usegroup, for the generation of measurement reports I look for a possibility to merge multiple plots to one. My plan (not the best one I think..): I generate a figure in an external functions and receive a list of figures like def make_one_fig(): thisfig = figure() ... plot (..)

[Matplotlib-users] colored histogram

2007-12-03 Thread Dirk Zickermann
Dear users, I would like to generate a colored histogram using a colormap. via ... vals, bins, patchs = pylab.hist(hist_data ,75 ,normed=1) .. Does anybody know how to assign a colormap to a histogram to find map data so that one can find easily data from a 2d map in the histogram? Thanks a lot, d

Re: [Matplotlib-users] matplotlib - representation of nan values in 2D

2007-09-30 Thread Dirk Zickermann
Dear all, thanks for your help. this is what I was looking for! Dirk 2007/9/26, Eric Firing <[EMAIL PROTECTED]>: > > David Huard wrote: > > Hi Dirk, > > > > If you haven't already done so, look at the numpy.ma > > module. It provides a masked array object that deals gracefully

[Matplotlib-users] matplotlib - representation of nan values in 2D

2007-09-26 Thread Dirk Zickermann
Dear matplotlib group, for the represenation of 2d measurement data I use the contourplot function from matplotlib. Some points in this map are not measurabel, therefore I get a non numerical value (nan) output. >From this data I want to generate a map and a histogram plot. This works fine, as lo