Absolute value:
Absolute value or the modulus of a real number x is the non-negative value of x without regard to its sign. For example absolute value of 7 is 7 and the absolute value of -7 is also 7.
Deviation:
Deviation is a measure of the difference between the observed value of a variable and some other value, often that variable’s mean.
Absolute Deviation:
The absolute deviation of an element of a data set is the absolute difference between that element and a given point. The absolute deviation of the observations X1, X2, X3, ….., Xn around a value A is defined as –
For discrete (ungrouped) data-

For continuous (ungrouped) data-


Absolute mean deviation:
The absolute mean deviation measures the spread and scatteredness of data around, preferably the median value, in terms of absolute deviation. The absolute deviation of observation X1, X2, X3, ……, Xn is minimum when measured around median i.e. A is the median of the data. Then, thus obtained absolute deviation is termed as the absolute mean deviation and is defined as:
For discrete (ungrouped) data –

For continuous (ungrouped) data –


Decision Making:
- The data set having a higher value of absolute mean deviation (or absolute deviation) has more variability.
- The data set with a lower value of absolute mean deviation (or absolute deviation) is preferable.
–> If there are two data sets with absolute mean values AMD1 and AMD2, and AMD1>AMD2 then the data in AMD1 is said to have more variability than the data in AMD2.
Example:
Following are the number of candidates enrolled each day in last 20 days for the GeeksforGeeks -DS & Algo course –
75, 69, 56, 46, 47, 79, 92, 97, 89, 88, 36, 96, 105, 32, 116, 101, 79, 93, 91, 112
Code #1: Absolute deviation using numpy
from numpy import mean, absolute
data = [ 75 , 69 , 56 , 46 , 47 , 79 , 92 , 97 , 89 , 88 ,
36 , 96 , 105 , 32 , 116 , 101 , 79 , 93 , 91 , 112 ]
A = 79
sum = 0
for i in range ( len (data)):
av = absolute(data[i] - A)
sum = sum + av
print ( sum / len (data))
|
Output:
20.15
Code #2: Absolute mean deviation using numpy
from numpy import mean, absolute
data = [ 75 , 69 , 56 , 46 , 47 , 79 , 92 , 97 , 89 , 88 ,
36 , 96 , 105 , 32 , 116 , 101 , 79 , 93 , 91 , 112 ]
mean(absolute(data - mean(data)))
|
Output:
20.055
Code #3: Absolute mean deviation using pandas
import pandas as pd
data = [ 75 , 69 , 56 , 46 , 47 , 79 , 92 , 97 , 89 , 88 ,
36 , 96 , 105 , 32 , 116 , 101 , 79 , 93 , 91 , 112 ]
df = pd.DataFrame(data)
df.mad()
|
Output:
20.055