我有一个二维直方图,显示了各种值的二维密度。
有没有人对如何以一种简单易懂的方式提出建议?
构成原始图的代码:
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()