保存没有空格pyplot的数字

时间:2018-03-24 10:24:56

标签: python matplotlib spectrogram

我有以下代码来创建频谱图。我遇到的问题是当我保存图形时,轴有空白区域,我想知道是否可以删除它?

x, y = np.mgrid[:len(times), :len(hist_bins_khz)]
fig, ax = plt.subplots()
ax.pcolormesh(x, y, np.swapaxes(amplitudes_logged, 0, 1))
plt.axis('off')
plt.savefig("testfile.png"),bbox_inches="tight")

Example output

0 个答案:

没有答案