Its formula is —

where, l: Lower Boundary of modal class h: Size of modal class f m : Frequency corresponding to modal class f 1 : Frequency preceding to modal class f 2 : Frequency proceeding to modal class
Parameters:
array: Input array or object having the elements to calculate the mode.
axis: Axis along which the mode is to be computed. By default axis = 0Returns: Modal values of the array elements based on the set parameters.
Code # 1 :
|
Output:
Arithmetic mode is: ModeResult (mode = array ([[1, 3, 8, 4, 7, 9 ]]), count = array ([[1, 1, 1, 1, 1, 1]]))
Code # 2: with multidimensional data
|
Output:
Arithmetic mode is: ModeResult (mode = array ([[3, 6, 3]]), count = array ([[2, 2, 1]])) Arithmetic mode is: ModeResult (mode = array ([3]), count = array ([4])) Arithmetic mode is: ModeResult ( mode = array ([[3, 6, 3]]), count = array ([[2, 2, 1]])) Arithmetic mode is: ModeResult (mode = array ([[1], [3], [ 3], [3]]), count = array ([[1], [1], [1], [1]]))