如何在二维直方图上放置边界?

时间:2019-07-19 03:54:38

标签: python python-2.7

我有一个二维直方图,显示了各种值的二维密度。

enter image description here

我想对数据进行划分,以使我有如下3个小节:enter image description here

有没有人对如何以一种简单易懂的方式提出建议?

构成原始图的代码:

 tot = pd.read_csv('dataset.csv', index_col = 0)

 xedges = np.arange(0, 1.005, .005)
 yedges = np.arange(-9, 0.05, .05)

 fig, ax = pyplot.subplots(figsize = (6, 6))
 a = ax.hist2d(tot, tot, bins=(xedges, yedges), cmap = 'jet', norm=mpl.colors.LogNorm())

 ax.set_xlim(0, 1)

 cbar = pyplot.colorbar(a[3], ax = ax)
 cbar.set_label('Counts (log$_{10}$)')

 pyplot.show()

0 个答案:

没有答案