- Hands-On Data Science and Python Machine Learning
- Frank Kane
- 203字
- 2021-07-15 17:14:59
Importing modules
Python itself, like any language, is fairly limited in what it can do. The real power of using Python for machine learning and data mining and data science is the power of all the external libraries that are available for it for that purpose. One of those libraries is called NumPy, or numeric Python, and, for example, here we can import the Numpy package, which is included with Canopy as np.
This means that I'll refer to the NumPy package as np, and I could call that anything I want. I could call it Fred or Tim, but it's best to stick with something that actually makes sense; now that I'm calling that NumPy package np, I can refer to it using np:
import numpy as np
In this example, I'll call the random function that's provided as part of the NumPy package and call its normal function to actually generate a normal distribution of random numbers using these parameters and print them out. Since it is random, I should get different results every time:
import numpy as np
A = np.random.normal(25.0, 5.0, 10)
print (A)
The output should look like this:

Sure enough, I get different results. That's pretty cool.
- Learning Scala Programming
- Java入門很輕松(微課超值版)
- C語言程序設計教程(第2版)
- Production Ready OpenStack:Recipes for Successful Environments
- Mastering Kali Linux for Web Penetration Testing
- C++ 從入門到項目實踐(超值版)
- Learning OpenCV 3 Computer Vision with Python(Second Edition)
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- C#程序設計教程(第3版)
- 深入實踐DDD:以DSL驅動復雜軟件開發
- Mastering Concurrency in Python
- PhoneGap 4 Mobile Application Development Cookbook
- 會當凌絕頂:Java開發修行實錄
- HTML5游戲開發實戰
- Xamarin Cross-Platform Development Cookbook