Michael - This trick for replacing contour labels with a string was posted a little while back (by someone else):* *
class FormatFaker(object): def __init__(self, str): self.str = str def __mod__(self, stuff): return self.str A=arange(100).reshape(10,10) CS=contour(A,[50,]) CS.clabel(fmt=FormatFaker('Some String')) > > From: Michael Hearne <[EMAIL PROTECTED]> > Subject: [Matplotlib-users] labeling contours with roman numerals > To: Matplotlib Users <matplotlib-users@lists.sourceforge.net> > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="us-ascii" > > Does a LineCollection generated by contour() have a property that > holds the labels? I would like to label my contour lines with roman > numerals, and cannot figure out how to get clabel to do that. > > Thanks, > > Mike > > >
------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users