- Hands-On Data Science and Python Machine Learning
- Frank Kane
- 353字
- 2021-07-15 17:15:09
Calculating mode using the SciPy package
Finally, let's look at mode. We will just generate a bunch of random integers, 500 of them to be precise, that range between 18 and 90. We're going to create a bunch of fake ages for people.
ages = np.random.randint(18, high=90, size=500) ages
Your output will be random, but should look something like the following screenshot:

Now, SciPy, kind of like NumPy, is a bunch of like handy-dandy statistics functions, so we can import stats from SciPy using the following syntax. It's a little bit different than what we saw before.
from scipy import stats stats.mode(ages)
The code means, from the scipy package import stats, and I'm just going to refer to the package as stats, Tha means that I don't need to have an alias like I did before with NumPy, just different way of doing it. Both ways work. Then, I used the stats.mode function on ages, which is our list of random ages. When we execute the above code, we get the following output:
Out[11]: ModeResult(mode=array([39]), count=array([12]))
So in this case, the actual mode is 39 that turned out to be the most common value in that array. It actually occurred 12 times.
Now if I actually create a new distribution, I would expect a completely different answer because this data really is completely random what these numbers are. Let's execute the above code blocks again to create a new distribution.
ages = np.random.randint(18, high=90, size=500) ages
from scipy import stats stats.mode(ages)
The output for randomizing the equation is as distribution is as follows:

Make sure you selected that code block and then you can hit the play button to actually execute it.
In this case, the mode ended up being the number 29, which occurred 14 times.
Out[11]: ModeResult(mode=array([29]), count=array([14]))
So, it's a very simple concept. You can do it a few more times just for fun. It's kind of like rolling the roulette wheel. We'll create a new distribution again.
There you have it, mean, median, and mode in a nutshell. It's very simple to do using the SciPy and NumPy packages.
- DBA攻堅指南:左手Oracle,右手MySQL
- C語言程序設計案例教程(第2版)
- 神經網絡編程實戰:Java語言實現(原書第2版)
- Cassandra Data Modeling and Analysis
- Mastering Python Networking
- Flux Architecture
- 名師講壇:Spring實戰開發(Redis+SpringDataJPA+SpringMVC+SpringSecurity)
- 精通Python設計模式(第2版)
- Scrapy網絡爬蟲實戰
- 寫給青少年的人工智能(Python版·微課視頻版)
- 游戲設計的底層邏輯
- Jakarta EE Cookbook
- IBM DB2 9.7 Advanced Application Developer Cookbook
- Practical Linux Security Cookbook
- ServiceDesk Plus 8.x Essentials