Midrange of data set
Midrange of the data in Data Science:
Midrange can also be used to calculate central tendency in data science. We have discussed Mean, Median and Mode value in earlier section.
This is used in Numeric attribute type. You can learn attribute types here.
Midrange is the average of the largest and smallest values in the data set.
This measure is very easy to compute. You can use SQL aggregation functions, max() and min().
Example:
data : 30000, 40000, 50000, 750000, 80000, 90000, 100000
Midrange = (30000 + 100000)/2 = 65000.
Comments
Post a Comment