1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
==================
Function reference
==================
Bottleneck provides the following functions:
================================= ==============================================================================================
reduce :meth:`nansum <bottleneck.nansum>`, :meth:`nanmean <bottleneck.nanmean>`,
:meth:`nanstd <bottleneck.nanstd>`, :meth:`nanvar <bottleneck.nanvar>`,
:meth:`nanmin <bottleneck.nanmin>`, :meth:`nanmax <bottleneck.nanmax>`,
:meth:`median <bottleneck.median>`, :meth:`nanmedian <bottleneck.nanmedian>`,
:meth:`ss <bottleneck.ss>`, :meth:`nanargmin <bottleneck.nanargmin>`,
:meth:`nanargmax <bottleneck.nanargmax>`, :meth:`anynan <bottleneck.anynan>`,
:meth:`allnan <bottleneck.allnan>`
non-reduce :meth:`replace <bottleneck.replace>`
non-reduce with axis :meth:`rankdata <bottleneck.rankdata>`, :meth:`nanrankdata <bottleneck.nanrankdata>`,
:meth:`partition <bottleneck.partition>`, :meth:`argpartition <bottleneck.argpartition>`,
:meth:`push <bottleneck.push>`
moving window :meth:`move_sum <bottleneck.move_sum>`, :meth:`move_mean <bottleneck.move_mean>`,
:meth:`move_std <bottleneck.move_std>`, :meth:`move_var <bottleneck.move_var>`,
:meth:`move_min <bottleneck.move_min>`, :meth:`move_max <bottleneck.move_max>`,
:meth:`move_argmin <bottleneck.move_argmin>`, :meth:`move_argmax <bottleneck.move_argmax>`,
:meth:`move_median <bottleneck.move_median>`, :meth:`move_rank <bottleneck.move_rank>`
================================= ==============================================================================================
Reduce
------
Functions the 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
|