如何删除使用 librosa.display.specshow 创建的图中的 Y 轴标签、刻度和轴标签

How to remove the Y-axis labels, ticks and axis label in a plot created using librosa.display.specshow

我正在使用此代码可视化 melspectogram 并保存图像

spec = librosa.feature.melspectrogram(y=y,sr=sr,n_mels=128 )
plt.figure(figsize=(12, 6))
spec = librosa.amplitude_to_db(spec, ref=np.max)
librosa.display.specshow(spec, sr=sr, y_coords=None,y_axis='log',fmax=20000)
plt.savefig('spectogram.png')

我无法删除 Y 轴标签、刻度和轴的标签并保存它们。

禁用所有轴:

plt.axis('off')