scipp.bins#
- scipp.bins(*, data, dim, begin=None, end=None)#
Create a binned variable from bin indices.
The elements of the returned variable are “bins”, defined as views into
data
. The returned variable keeps and manages a copy ofdata
internally.The variables
begin
andend
must have the same dims and shape anddtype=sc.DType.int64
. The output dims and shape are given bybegin
. If onlybegin
is given, each bucket is a slice containing a non-range slice ofdata
at the given indices. If neitherbegin
norend
are given, the output hasdims=[dim]
and contains all non-range slices along that dimension.- Parameters:
begin (
Optional
[Variable
], default:None
) – Optional begin indices of bins, used for slicingdata
. If not provided each row ofdata
is mapped to a different bin.end (
Optional
[Variable
], default:None
) – Optional end indices of bins, used for slicingdata
. If not provided,begin
is used as starting offsets for each bin, i.e., the end of the Nth bin is set to the begin of the N+1st bin.dim (
str
) – Dimension ofdata
that will be sliced to obtain data for any given bin.data (VariableLike) – A variable, data array, or dataset containing combined data of all bins.
- Returns:
Variable
– Variable containing data in bins.
See also
scipp.bin
For creating DataArrays based on binning of coord value instead of explicitly given index ranges.