Re: [Matplotlib-users] Rotation kills anti-aliasing?

2008-05-05 Thread Diwaker Gupta
On Mon, May 5, 2008 at 5:15 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > Try different Postscript viewers available on your platform -- it's > possible one of them may produce better results. And, of course, the most > important thing with Postscript is how it renders on your printer. If

[Matplotlib-users] Rotation kills anti-aliasing?

2008-05-05 Thread Diwaker Gupta
Folks, I'm trying to make a simple plot where the xtick labels are rotated by 45 degrees. The rotation works fine, but it destroys the anti aliasing of the labels. The rest of the plot renders just fine. I'm using the PS backend (savefig to an EPS). Something like this: labels = ["one", "two", "t

Re: [Matplotlib-users] histogram bug

2006-12-28 Thread Diwaker Gupta
> Examples: > > This makes a sensible plot that behaves well under zooming and panning: > hist(randn(1000), log=True) > show() Thanks! However... > The following still generates an exception: > hist(randn(1000)) > gca().set_yscale('log') > show() I think this makes the API more confusing. As an

Re: [Matplotlib-users] histogram bug

2006-12-26 Thread Diwaker Gupta
> >> The following minimal script reveals a rendering problem with > >> displaying a histogram on a log vertical axis. Has this been resolved yet? I'm running Matplotlib 0.87.5-2.2 on Debian Unstable. I try to run the following script: from pylab import * hist(rand(100), 20) ax = gca() ax.set_ysc