array functions¶
Most larry methods have an equivalent Numpy array function. For example, to find the z-score along the last axis of a larry, lar, you would do:
>>> lar.zscore(axis=-1)
Here’s the corresponding operation on a Numpy array, arr:
>>> la.farray.zscore(arr, axis=-1)
This section of the manual is a reference guide to most of the Numpy array
functions available in the la
package.
Functions and examples
Moving window statistics¶
This section contains Numpy array functions that calculate moving window summary statistics.
Note
The Bottleneck package contains fast moving window functions.