pyinterp.Histogram2D.push_delayed#

Histogram2D.push_delayed(x: numpy.ndarray | dask.array.core.Array, y: numpy.ndarray | dask.array.core.Array, z: numpy.ndarray | dask.array.core.Array) dask.array.core.Array[source]#

Push new samples into the defined bins from dask array.

Parameters:
  • x – X coordinates of the samples.

  • y – Y coordinates of the samples.

  • z – New samples to push into the defined bins.

Returns:

The calculation graph producing the update of the grid from the provided samples. Running the graph will return an instance of this class containing the statistics calculated for all processed samples.

See also

push