VOOZH about

URL: https://www.geeksforgeeks.org/python/find-the-most-frequent-value-in-a-numpy-array/

⇱ Find the most frequent value in a NumPy array - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Find the most frequent value in a NumPy array

Last Updated : 15 Jul, 2025

In this article, let's discuss how to find the most frequent value in the NumPy array. 

Steps to find the most frequency value in a NumPy array:

  • Create a NumPy array.
  • Apply bincount() method of NumPy to get the count of occurrences of each element in the array.
  • The n, apply argmax() method to get the value having a maximum number of occurrences(frequency).
👁 Image

Example 1:

Output:

1

This code will generate a single output only, it will not work fine if the array contains more than one element having the maximum number of frequency.

Example 2: If the array has more than one element having maximum frequency

Output:

1 3
Comment