Python3 安装 numpy 科学库
短信预约 -IT技能 免费直播动态提醒
[root@Singapore numpy]# wget https://pypi.python.org/packages/ee/66/7c2690141c520db08b6a6f852fa768f421b0b50683b7bbcd88ef51f33170/numpy-1.14.0.zip
[root@Singapore numpy]# md5sum numpy-1.14.0.zip
c12d4bf380ac925fcdc8a59ada6c3298 numpy-1.14.0.zip
[root@Singapore numpy]# unzip numpy-1.14.0.zip
[root@Singapore numpy]# cd numpy-1.14.0
[root@Singapore numpy-1.14.0]# cat INSTALL.rst.txt #安装说明
[root@Singapore numpy-1.14.0]# python3 setup.py build install --prefix /root/python/numpy #注意安装路径
[root@Singapore numpy-1.14.0]# echo "export PYTHONPATH=/root/python/numpy/lib/python3.6/site-packages" >> ~/.bashrc #注意安装路径
[root@Singapore numpy-1.14.0]# . ~/.bashrc
[root@Singapore numpy-1.14.0]# echo $?
0
[root@Singapore numpy-1.14.0]#
写一个线性回归 试一试
[root@Singapore work.dir]# cat SimpleLineRegression.py
#!/usr/bin/python3
import numpy as np
def fitSLR(x,y):
n = len(x)
dinominator = 0
numerator = 0
for i in range(0, n):
numerator += (x[i] - np.mean(x)) * (y[i] - np.mean(y))
dinominator +=(x[i] - np.mean(x)) ** 2
print ("numerator:", numerator)
print ("dinominator", dinominator)
b1 = numerator/float(dinominator)
b0 = np.mean(y)/float(np.mean(x))
return b0, b1
def predict(x, b0, b1):
return b0 + x*b1
x = [1,3,2,1,3]
y = [14,24,18,17,27]
b0, b1 = fitSLR(x,y)
print ("intercept:", b0, " slope:", b1)
x_test = 6
y_test = predict(6, b0, b1)
print("y_test", y_test)
[root@Singapore work.dir]# ./SimpleLineRegression.py
numerator: 20.0
dinominator 4.0
intercept: 10.0 slope: 5.0
y_test 40.0
[root@Singapore work.dir]#
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341