histogram(data)
Computes the histogram for the given array of data samples. Returns an array of bins, where each bin is an array containing the associated elements from the input data. Thus, the length
of the bin is the number of elements in that bin. Each bin has two additional attributes:
-
x0
- the lower bound of the bin (inclusive). -
x1
- the upper bound of the bin (exclusive, except for the last bin).
Please login to continue.