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

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.

主站蜘蛛池模板: 木里| 华安县| 怀柔区| 安福县| 高州市| 泗水县| 新昌县| 贵南县| 田阳县| 沂南县| 铜陵市| 苗栗县| 衡山县| 唐海县| 喀什市| 安乡县| 汽车| 保靖县| 阿尔山市| 鹤山市| 探索| 万源市| 池州市| 玉林市| 辽宁省| 富平县| 苏尼特左旗| 新河县| 舞钢市| 大渡口区| 泾源县| 兴义市| 孝义市| 凤阳县| 夏津县| 尉氏县| 台州市| 晋中市| 阜城县| 永济市| 沙田区|