bundles / scipy 1.17.1 / scipy / stats / _mstats_basic / mode
function
scipy.stats._mstats_basic:mode
Signature
def mode ( a , axis = 0 ) Summary
Returns an array of the modal (most common) value in the passed array.
Parameters
a: array_liken-dimensional array of which to find mode(s).
axis: int or None, optionalAxis along which to operate. Default is 0. If None, compute over the whole array
a.
Returns
mode: ndarrayArray of modal values.
count: ndarrayArray of counts for each mode.
Notes
For more details, see scipy.stats.mode.
Examples
import numpy as np from scipy import stats from scipy.stats import mstats m_arr = np.ma.array([1, 1, 0, 0, 0, 0], mask=[0, 0, 1, 1, 1, 0]) mstats.mode(m_arr) # note that most zeros are masked✓
Aliases
-
scipy.stats._mstats_basic.mode