# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
import numpy as np
s = np.random.uniform(0,1,1200) # 产生1200个[0,1)的数
count, bins, ignored = plt.hist(s, 12, normed=True)
"""
hist原型:
matplotlib.pyplot.hist(x, bins=10, range=None, normed=False, weights=None,
cumulative=False, bottom=None, histtype='bar', align='mid',
orientation='vertical',rwidth=None, log=False, color=None, label=None,
stacked=False, hold=None,data=None,**kwargs)
输入参数很多,具体查看matplotlib.org,本例中用到3个参数,分别表示:s数据源,bins=12表示bin
的个数,即画多少条条状图,normed表示是否归一化,每条条状图y坐标为n/(len(x)`dbin),整个条状图积分值为1
输出:count表示数组,长度为bins,里面保存的是每个条状图的纵坐标值
bins:数组,长度为bins+1,里面保存的是所有条状图的横坐标,即边缘位置
ignored: patches,即附加参数,列表或列表的列表,本例中没有用到。
"""
plt.plot(bins, np.ones_like(bins), linewidth=2, color='r')
plt.show()
绘制结果如下图:
# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.mlab as MLA
mu, sigma = 10, 10
x = mu + sigma*np.random.randn(5000)
# the histogram of the data
n, bins, patches = plt.hist(x, 20, normed=1, facecolor='blue', alpha=0.8)
# add a 'best fit' line
y = MLA.normpdf( bins, mu, sigma)
"""
normpdf函数原型:
matplotlib.mlab.normpdf(x, *args)
功能:Return the normal pdf evaluated at x; args provides mu, sigma
"""
l = plt.plot(bins, y, 'g--', linewidth=3)
plt.xlabel('samples')
plt.ylabel('p')
plt.title(r'$Normal\ pdf\ m=10,\ \sigma=10$')
plt.axis([-30, 50, 0, 0.042])
plt.grid(True)
plt.show()
结果如下图:
4. numpy.random.RandomState介绍:
英文简介:“Container for the Mersenne Twister pseudo-random number generator.” 翻译过来为:
它是一个容器,用来存储采用梅森旋转产生伪随机数的算法。
输入参数:seed,可选项{None, int, array_like},没有给定的话,函数随机选一个起始点,
这样深度学习的结果可能接近,但不完全相同,如果给定一个seed,则结果是deterministic,
是确定的,但给定不给定seed对输出随机数并没有影响,只是相当于给定了一个初始点,后面
的数也是基于这个seed而产生。
Reference:
1. http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.uniform.html
2. http://stackoverflow.com/questions/33209865/the-usage-of-randomstate-in-numpy
-related-to-seed