metrics

max(array)

Jitted function to calculate the maximum along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

mean(array)

Jitted function to calculate the mean along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

median(array)

Jitted function to calculate the median along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

min(array)

Jitted function to calculate the minimum along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q01(array)

Convenience function to calculate the 1st percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q05(array)

Convenience function to calculate the 5th percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q10(array)

Convenience function to calculate the 10th percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q90(array)

Convenience function to calculate the 90th percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q95(array)

Convenience function to calculate the 95th percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

q99(array)

Convenience function to calculate the 99th percentile along the last axis of a 3D array.

Parameters:

array (ndarray) – The input array

Return type:

ndarray

quantile(array, q)

Jitted function to calculate a quantile along the last axis of a 3D array.

Parameters:
  • array (ndarray) – The input array

  • q (float) – The quantile to calculate

Return type:

ndarray