================== Function reference ================== Bottleneck provides the following functions: ================================= ============================================================================================== reduce :meth:`nansum `, :meth:`nanmean `, :meth:`nanstd `, :meth:`nanvar `, :meth:`nanmin `, :meth:`nanmax `, :meth:`median `, :meth:`nanmedian `, :meth:`ss `, :meth:`nanargmin `, :meth:`nanargmax `, :meth:`anynan `, :meth:`allnan ` non-reduce :meth:`replace ` non-reduce with axis :meth:`rankdata `, :meth:`nanrankdata `, :meth:`partition `, :meth:`argpartition `, :meth:`push ` moving window :meth:`move_sum `, :meth:`move_mean `, :meth:`move_std `, :meth:`move_var `, :meth:`move_min `, :meth:`move_max `, :meth:`move_argmin `, :meth:`move_argmax `, :meth:`move_median `, :meth:`move_rank ` ================================= ============================================================================================== Reduce ------ Functions that reduce the input array along the specified axis. ------------ .. autofunction:: bottleneck.nansum ------------ .. autofunction:: bottleneck.nanmean ------------ .. autofunction:: bottleneck.nanstd ------------ .. autofunction:: bottleneck.nanvar ------------ .. autofunction:: bottleneck.nanmin ------------ .. autofunction:: bottleneck.nanmax ------------ .. autofunction:: bottleneck.median ------------ .. autofunction:: bottleneck.nanmedian ------------ .. autofunction:: bottleneck.ss ------------ .. autofunction:: bottleneck.nanargmin ------------ .. autofunction:: bottleneck.nanargmax ------------ .. autofunction:: bottleneck.anynan ------------ .. autofunction:: bottleneck.allnan Non-reduce ---------- Functions that do not reduce the input array and do not take `axis` as input. ------------ .. autofunction:: bottleneck.replace Non-reduce with axis -------------------- Functions that do not reduce the input array but operate along a specified axis. ------------ .. autofunction:: bottleneck.rankdata ------------ .. autofunction:: bottleneck.nanrankdata ------------ .. autofunction:: bottleneck.partition ------------ .. autofunction:: bottleneck.argpartition ------------ .. autofunction:: bottleneck.push Moving window functions ----------------------- Functions that operate along a (1d) moving window. ------------ .. autofunction:: bottleneck.move_sum ------------ .. autofunction:: bottleneck.move_mean ------------ .. autofunction:: bottleneck.move_std ------------ .. autofunction:: bottleneck.move_var ------------ .. autofunction:: bottleneck.move_min ------------ .. autofunction:: bottleneck.move_max ------------ .. autofunction:: bottleneck.move_argmin ------------ .. autofunction:: bottleneck.move_argmax ------------ .. autofunction:: bottleneck.move_median ------------ .. autofunction:: bottleneck.move_rank