On this page
numpy.digitize
numpy.digitize(x, bins, right=False)[source]-
Return the indices of the bins to which each value in input array belongs.
rightorder of bins returned index isatisfiesFalseincreasing bins[i-1] <= x < bins[i]Trueincreasing bins[i-1] < x <= bins[i]Falsedecreasing bins[i-1] > x >= bins[i]Truedecreasing bins[i-1] >= x > bins[i]If values in
xare beyond the bounds ofbins, 0 orlen(bins)is returned as appropriate.Parameters: -
x : array_like -
Input array to be binned. Prior to NumPy 1.10.0, this array had to be 1-dimensional, but can now have any shape.
-
bins : array_like -
Array of bins. It has to be 1-dimensional and monotonic.
-
right : bool, optional -
Indicating whether the intervals include the right or the left bin edge. Default behavior is (right==False) indicating that the interval does not include the right edge. The left bin end is open in this case, i.e., bins[i-1] <= x < bins[i] is the default behavior for monotonically increasing bins.
Returns: -
indices : ndarray of ints -
Output array of indices, of same shape as
x.
Raises: - ValueError
-
If
binsis not monotonic. - TypeError
-
If the type of the input is complex.
See also
Notes
If values in
xare such that they fall outside the bin range, attempting to indexbinswith the indices thatdigitizereturns will result in an IndexError.New in version 1.10.0.
np.digitizeis implemented in terms ofnp.searchsorted. This means that a binary search is used to bin the values, which scales much better for larger number of bins than the previous linear search. It also removes the requirement for the input array to be 1-dimensional.For monotonically _increasing_
bins, the following are equivalent:np.digitize(x, bins, right=True) np.searchsorted(bins, x, side='left')Note that as the order of the arguments are reversed, the side must be too. The
searchsortedcall is marginally faster, as it does not do any monotonicity checks. Perhaps more importantly, it supports all dtypes.Examples
>>> x = np.array([0.2, 6.4, 3.0, 1.6]) >>> bins = np.array([0.0, 1.0, 2.5, 4.0, 10.0]) >>> inds = np.digitize(x, bins) >>> inds array([1, 4, 3, 2]) >>> for n in range(x.size): ... print(bins[inds[n]-1], "<=", x[n], "<", bins[inds[n]]) ... 0.0 <= 0.2 < 1.0 4.0 <= 6.4 < 10.0 2.5 <= 3.0 < 4.0 1.0 <= 1.6 < 2.5>>> x = np.array([1.2, 10.0, 12.4, 15.5, 20.]) >>> bins = np.array([0, 5, 10, 15, 20]) >>> np.digitize(x,bins,right=True) array([1, 2, 3, 4, 4]) >>> np.digitize(x,bins,right=False) array([1, 3, 3, 4, 5]) -
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.digitize.html