- Hands-On Data Science and Python Machine Learning
- Frank Kane
- 335字
- 2021-07-15 17:15:08
Mode
Finally, we'll talk about mode. This doesn't really come up too often in practice, but you can't talk about mean and median without talking about mode. All mode means, is the most common value in a dataset.
Let's go back to my example of the number of kids in each house.
0, 2, 3, 2, 1, 0, 0, 2, 0
How many of each value are there:
0: 4, 1: 1, 2: 3, 3: 1
The MODE is 0
If I just look at what number occurs most frequently, it turns out to be 0, and the mode therefore of this data is 0. The most common number of children in a given house in this neighborhood is no kids, and that's all that means.
Now this is actually a pretty good example of continuous versus discrete data, because this only really works with discrete data. If I have a continuous range of data then I can't really talk about the most common value that occurs, unless I quantize that somehow into discrete values. So we've already run into one example here where the data type matters.
A lot of real-world data tends to be continuous, so maybe that's why I don't hear too much about mode, but we see it here for completeness.
There you have it: mean, median, and mode in a nutshell. Kind of the most basic statistics stuff you can possibly do, but I hope you gained a little refresher there in the importance of choosing between median and mean. They can tell very different stories, and yet people tend to equate them in their heads, so make sure you're being a responsible data scientist and representing data in a way that conveys the meaning you're trying to represent. If you're trying to display a typical value, often the median is a better choice than the mean because of outliers, so remember that. Let's move on.
- Practical Data Analysis Cookbook
- Instant Testing with CasperJS
- Visual C++實例精通
- INSTANT Sencha Touch
- C語言實驗指導(dǎo)及習題解析
- Python:Master the Art of Design Patterns
- C語言課程設(shè)計
- Kotlin編程實戰(zhàn):創(chuàng)建優(yōu)雅、富于表現(xiàn)力和高性能的JVM與Android應(yīng)用程序
- Red Hat Enterprise Linux Troubleshooting Guide
- C陷阱與缺陷
- 跟戴銘學iOS編程:理順核心知識點
- Python物理建模初學者指南(第2版)
- 軟件測試技術(shù)
- Expert Cube Development with SSAS Multidimensional Models
- C++ Windows Programming