Re: [Matplotlib-users] weird line in histogram

2008-11-09 Thread Jouni K . Seppänen
"nicky van foreest" <[EMAIL PROTECTED]> writes: > I try to plot a histogram, which succeeds nicely, but I also get a > strange line in the same plot. Does anybody know why this is the case, > and what to do about it? Here is the code: > > n, bins, patches = hist(res,bins = 10, cumulative=True

[Matplotlib-users] weird line in histogram

2008-11-08 Thread nicky van foreest
Dear All, I try to plot a histogram, which succeeds nicely, but I also get a strange line in the same plot. Does anybody know why this is the case, and what to do about it? Here is the code: n, bins, patches = hist(res,bins = 10, cumulative=True, normed=False) l = plot(bins) show()