forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaverage_absolute_deviation.py
29 lines (24 loc) · 859 Bytes
/
average_absolute_deviation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
defaverage_absolute_deviation(nums: list[int]) ->float:
"""
Return the average absolute deviation of a list of numbers.
Wiki: https://en.wikipedia.org/wiki/Average_absolute_deviation
>>> average_absolute_deviation([0])
0.0
>>> average_absolute_deviation([4, 1, 3, 2])
1.0
>>> average_absolute_deviation([2, 70, 6, 50, 20, 8, 4, 0])
20.0
>>> average_absolute_deviation([-20, 0, 30, 15])
16.25
>>> average_absolute_deviation([])
Traceback (most recent call last):
...
ValueError: List is empty
"""
ifnotnums: # Makes sure that the list is not empty
raiseValueError("List is empty")
average=sum(nums) /len(nums) # Calculate the average
returnsum(abs(x-average) forxinnums) /len(nums)
if__name__=="__main__":
importdoctest
doctest.testmod()