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

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.

主站蜘蛛池模板: 怀宁县| 沿河| 叙永县| 广南县| 文山县| 陆河县| 连云港市| 泰顺县| 河津市| 镇原县| 成武县| 朝阳县| 香港| 镇坪县| 上林县| 建湖县| 宁强县| 鄂尔多斯市| 廉江市| 塔城市| 太仓市| 广饶县| 青州市| 贵德县| 铁岭市| 文水县| 普兰县| 深水埗区| 南城县| 水城县| 措勤县| 尖扎县| 色达县| 海淀区| 南投市| 揭东县| 昭通市| 姜堰市| 格尔木市| 峨眉山市| 阜南县|