how to find the mean median and mode of a data set in python using pandas code example
Example 1: calculate mode in python
from collections import Counter
def calculate_mode(n):
c = Counter(n)
num_freq = c.most_common()
max_count = num_freq[0][1]
modes = []
for num in num_freq:
if num[1] == max_count:
modes.append(num[0])
return modes
def calculate_mode(n):
c = Counter(n)
mode = c.most_common(1)
return mode[0][0]
Example 2: statistics mode python when no.s are same
import statistics
statistics.mode(x)