- Hands-On Data Science and Python Machine Learning
- Frank Kane
- 262字
- 2021-07-15 17:15:09
Analyzing the effect of outliers
Just to prove a point, let's add in an outlier. We'll take Donald Trump; I think he qualifies as an outlier. Let's go ahead and add his income in. So I'm going to manually add this to the data using np.append, and let's say add a billion dollars (which is obviously not the actual income of Donald Trump) into the incomes data.
incomes = np.append(incomes, [1000000000])
What we're going to see is that this outlier doesn't really change the median a whole lot, you know, that's still going to be around the same value $26,911, because we didn't actually change where the middle point is, with that one value, as shown in the following example:
np.median(incomes)
This will output the following:
Out[5]: 26911.948365056276
This gives a new output of:
np.mean(incomes)
The following is the output of the preceding code:
Out[5]:127160.38252311043
Aha, so there you have it! It is a great example of how median and mean, although people tend to equate them in commonplace language, can be very different, and tell a very different story. So that one outlier caused the average income in this dataset to be over $127160 a year, but the more accurate picture is closer to 27,000 dollars a year for the typical person in this dataset. We just had the mean skewed by one big outlier.
The moral of the story is: take anyone who talks about means or averages with a grain of salt if you suspect there might be outliers involved, and income distribution is definitely a case of that.
- Getting started with Google Guava
- Python數據可視化:基于Bokeh的可視化繪圖
- Maven Build Customization
- Learning RabbitMQ
- Apache Spark 2 for Beginners
- Practical DevOps
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- Banana Pi Cookbook
- Redis Essentials
- QGIS:Becoming a GIS Power User
- Python編程實戰
- Python深度學習:模型、方法與實現
- Webpack實戰:入門、進階與調優
- C#程序設計教程(第3版)
- Visual Foxpro 9.0數據庫程序設計教程