
Python
zhongshaoyy
这个作者很懒,什么都没留下…
展开
-
安装第三方库出现 Python version 2.7 required, which was not found in the registry解决方法
安装第三方库出现 Python version 2.7 required, which was not found in the registry建立一个文件 register.py 内容如下. 然后执行该脚本.[python] view plain copyimport sys from _winreg impor转载 2016-11-16 11:31:12 · 490 阅读 · 0 评论 -
python多维数组分位数的求取
在python中计算一个多维数组的任意百分比分位数,只需用np.percenttile即可,十分方便import numpy as npa = [154, 400, 1124, 82, 94, 108]print np.percentile(a,95) # gives the 95th percentile原创 2016-11-20 15:13:46 · 8803 阅读 · 2 评论 -
ubuntu/Linux 下 Pycharm 安装中文汉化包
转载地址:http://blog.youkuaiyun.com/wangyjfrecky/article/details/701728821. 打开终端,依次执行如下命令:[plain] view plain copy cd /tmp git clone https://github.com/ewen0930/PyCharm-Chinese cd Pycharm转载 2017-11-23 13:25:27 · 4062 阅读 · 0 评论