arrays
File Purpose: tools for arrays (more generic than xarrays)
Functions
|
returns max of all the finite values of arr. |
|
returns mean of all the finite values of arr. |
|
returns median of all the finite values of arr. |
|
returns min of all the finite values of arr. |
|
returns op(arr), hitting only the finite values of arr. |
|
returns percentile of all the finite values of arr. |
|
returns std of all the finite values of arr. |
|
returns a slice object equivalent to the given indices, if possible. |
|
interprets any fractional values, i.e. non-integers between -1 and 1. |
|
returns whether x looks flat, i.e. looks like an iterable with no internal layers. |
|
raise MemorySizeError if array is too large. |
raise MemorySizeError if loading nload arrays like array1 will be too large. |
|
|
np.ndenumerate(arr) but skip wherever value is none (compared via 'is', not '=='). |
|
returns an array of indexes, where each element is its own np.ndindex. |
|
returns the implied shape for a numpy object array constructed from nested_list. |
|
convert a numpy array of dtype==object into array of str(x) for all x in array. |
|
returns unique values of arr, within relative tolerance rtol and absolute tolerance atol. |
|
wrap 1D list into a 2D array. |