#!F:\develop\PythonCode
#coding:utf-8#copyRight by enmuser
import numpy as np
from matplotlib import pyplot as plt
mu,sigma = 1,2 #mean and standard deviation
s=np.random.normal(mu,sigma,10000)
#the histogram of the data
n,bins,patches = plt.hist(s,100,normed=True)
plt.xlabel(u'Smarts')
plt.ylabel(u'Probability')
plt.title(u'Histogram of IQ')
plt.text(-2,.2,r'$\mu=1,\ \sigma=2$')
plt.grid(True)
plt.show()
ps:代码时超别人的,自己对着打一遍,执行了一下
执行如上代码时出现了很多问题
1.自己是window x64 安装的版本是Python 2.7 作为一个画图程序,可以发现其中依赖的插件有很多numpy,matplotlib,six,dateutil,pyparsing需要自己一个一个去找对应的版本安装
2.出现的最大的问题就是关于编码的报错
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc8 in position 3: ordinal not in range(128)
这个报错我搜尽答案,终于解决掉了
解决方法:
在Python的安装目录的Lib下新建一个sizecustomize.py文件在文件中输入
#encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('gbk')
要根据自己系统的编码情况设置编码格式