标签: 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")