|
From: Andrew S. <str...@as...> - 2004-12-24 07:00:19
|
seb...@sp... wrote:
>Attached is a pcolor plot made with Matplotlib.
>
>I was wondering if there is any way I can remove
>thin black lines (borders) in this plot for cases
>like this where I don't have zillions of rectangles
>to make black lines too small to notice.
>
>
>
Does the docstring for pcolor help?
* shading = 'flat' : or 'faceted'. If 'faceted', a black grid is
drawn around each rectangle; if 'flat', edge colors are same as
face colors
Try
pcolor( your_other_args, shading='flat')
Cheers!
Andrew
|