mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
40e357f688
A serious bug was addressed with this pull request. The mode function previously didn't return the mode of the input list. Instead, it always returned the first value. Due to lacking tests, the bug was never caught. This pull request also adds new functionality to the function, allowing support for more than one mode. See #4464 for details. * * Mistake in average_mode.py fixed. The previous solution was to returnthe value on the first loop iteration, which is not correct, more than that it used to delete repeating values, so result's array and check array lost relation between each other * Type hint added * redundant check_list deleted Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com> * Suggestions resolved * output typing changed to Any * test cases added * Black done File formatted * Unused statistics import statistics only used in doctest, now they are imported in doctest * Several modes support added Several modes support added * Comment fix * Update maths/average_mode.py Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com> * Suggestions added Co-authored-by: Maxim R. <49735721+mrmaxguns@users.noreply.github.com>
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
def mode(input_list: list) -> list: # Defining function "mode."
|
|
"""This function returns the mode(Mode as in the measures of
|
|
central tendency) of the input data.
|
|
|
|
The input list may contain any Datastructure or any Datatype.
|
|
|
|
>>> input_list = [2, 3, 4, 5, 3, 4, 2, 5, 2, 2, 4, 2, 2, 2]
|
|
>>> mode(input_list)
|
|
[2]
|
|
>>> input_list = [3, 4, 5, 3, 4, 2, 5, 2, 2, 4, 4, 2, 2, 2]
|
|
>>> mode(input_list)
|
|
[2]
|
|
>>> input_list = [3, 4, 5, 3, 4, 2, 5, 2, 2, 4, 4, 4, 2, 2, 4, 2]
|
|
>>> mode(input_list)
|
|
[2, 4]
|
|
>>> input_list = ["x", "y", "y", "z"]
|
|
>>> mode(input_list)
|
|
['y']
|
|
>>> input_list = ["x", "x" , "y", "y", "z"]
|
|
>>> mode(input_list)
|
|
['x', 'y']
|
|
"""
|
|
result = list() # Empty list to store the counts of elements in input_list
|
|
for x in input_list:
|
|
result.append(input_list.count(x))
|
|
if not result:
|
|
return []
|
|
y = max(result) # Gets the maximum value in the result list.
|
|
# Gets values of modes
|
|
result = {input_list[i] for i, value in enumerate(result) if value == y}
|
|
return sorted(result)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|