Hello,

thanks for the quick reply to my last problem.
Here I've got a new one:

While the last bin carries the overshoot, the first bin does not carry the
undershoot.

Example:

from numpy import *
from pylab import *

bins  = 2 + arange(21)
data = arange(24)
print bins
print data
hist(data,bins)
show()

The last bin has two counts since it contains the entries 22 and 23 from data,
but the first bin has only one count, although it should carry the entries 
0,1,2.

Is this intended?

Best regards,

Peter Melchior

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to