11 Star 34 Fork 11

南寻/python数据可视化建图

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
直方图.py 349 Bytes
一键复制 编辑 原始数据 按行查看 历史
南寻 提交于 2017-06-05 22:17 . 2
#coding:utf-8
import matplotlib.pyplot as plt
import numpy as np
# m1=100
# sigma=20
# x=m1+sigma*np.random.randn(2000)
# plt.hist(x,bins=50,color="green",normed=True)
# plt.show()
#双变量的直方图
#颜色越深频率越高
#研究双变量的联合分布
x=np.random.rand(1000)+2
y=np.random.rand(1000)+3
plt.hist2d(x,y,bins=40)
plt.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nanxun/pythonshujukeshihuajiantu.git
git@gitee.com:nanxun/pythonshujukeshihuajiantu.git
nanxun
pythonshujukeshihuajiantu
python数据可视化建图
master

搜索帮助