Replies: 2 comments
-
Sample valuesInput: [4, 4, 6, 7, 10, 11, 12, 14, 15] median = 10 Input: [7, 9, 9, 10, 10, 10, 11, 12, 12, 14] median = [10,10] Input: [7, 7, 31, 31, 47, 75, 87, 115, 116, 119, 119, 155, 177]; Median: 87 Q1=31 (median of lower half, from row 1 to 6, (31+31/2)) IQR = Q3 − Q1 = 119 - 31 = 88 More here: https://en.wikipedia.org/wiki/Interquartile_range |
Beta Was this translation helpful? Give feedback.
0 replies
-
Other Recommendations
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
To calculate the average of a dataset while removing big outliers, the interquartile range (IQR) method can be used.
The IQR serves as a robust measure of variability because it is less sensitive to outliers compared to the range.
Resources: https://www.youtube.com/watch?v=qLYYHWYr8xI&t=106s
Beta Was this translation helpful? Give feedback.
All reactions