官术网_书友最值得收藏!

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.

主站蜘蛛池模板: 山阴县| 淳化县| 都兰县| 改则县| 苍梧县| 柘城县| 抚远县| 安泽县| 肇庆市| 阜平县| 福建省| 札达县| 二连浩特市| 四子王旗| 大邑县| 文化| 化州市| 文化| 建宁县| 南充市| 呼图壁县| 邹平县| 汝阳县| 萨嘎县| 特克斯县| 登封市| 井冈山市| 布拖县| 红原县| 深水埗区| 木兰县| 临泉县| 明溪县| 清河县| 新泰市| 馆陶县| 景东| 延庆县| 富川| 贡觉县| 酒泉市|