狄利克雷分布
定义
性质
其中α和随机变量的方差有关系,当α趋向于无穷大的时候,这个variance就越小,越趋向于0,那么这个分布就越平滑。
python使用
# demo
import numpy
s = np.random.default_rng().dirichlet((10, 5, 3), 20).transpose()
import matplotlib.pyplot as plt
plt.barh(range(20), s[0])
plt.barh(range(20), s[1], left=s[0], color='g')
plt.barh(range(20), s[2], left=s[0]+s[1], color='r')
plt.title("Lengths of Strings")
运行结果:
参考链接
[1] https://zhuanlan.zhihu.com/p/76991275
[2] 这里面的定义也挺直观的
https://www.cnblogs.com/simayuhe/p/5145759.html