Python 如何从Matplotlib specgram中删除图例?

Python 如何从Matplotlib specgram中删除图例?,python,matplotlib,google-colaboratory,spectrogram,Python,Matplotlib,Google Colaboratory,Spectrogram,我正在尝试删除光谱图的图例(我正在尝试获得244x244像素的图像) 我已经试过了,但它的工作方式非常奇怪——我得到了结果和一个异常!看- 图像- (我正在使用google colab) 这是我正在使用的代码 import numpy as np import matplotlib.pyplot as plt %matplotlib inline import moviepy.editor as mpy import youtube_dl ## downloading the video y

我正在尝试删除光谱图的图例(我正在尝试获得244x244像素的图像)

我已经试过了,但它的工作方式非常奇怪——我得到了结果和一个异常!看- 图像-

(我正在使用google colab)

这是我正在使用的代码

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
import moviepy.editor as mpy

import youtube_dl
## downloading the video
ydl_opts = {
    'format': 'bestaudio/best',
    'postprocessors': [{
        'key': 'FFmpegExtractAudio',
        'preferredcodec': 'wav',
        'preferredquality': '192',
    }],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://www.youtube.com/watch?v=5pIpVK3Gecg'])

## selecting the audio clip from 17oth second to 180th second and saving it in talk.wav
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
ffmpeg_extract_subclip("Tyler, The Creator - 'IGOR,' Odd Future and Scoring a" 
                       "Number 1 Album _ Apple Music-5pIpVK3Gecg.wav", 170, 
                       180, targetname="talk.wav")


talk = mpy.AudioFileClip('talk.wav')
# switching axis off
plt.axis('off')

sample_rate = talk.fps
NFFT = sample_rate /25
audio_data = talk.to_soundarray()
#trying to get a 244 x 244 pixel image 
fig, ax = plt.subplots(nrows=1, ncols=1, figsize=(2.44, 2.44), dpi=100.)

ax.axis('off')

spectrum, freqs, time, im = ax.specgram(audio_data.mean(axis=1), NFFT=NFFT, pad_to=4096, 
                                        Fs=sample_rate, noverlap=512, mode='magnitude', )


########## the problem lies here ##########
ax.get_legend.remove()

##trying to save stuff to drive but this doesnt run because of the exception
fig.colorbar(im)
fig.savefig('specto.png')

import os
print( os.getcwd() )
print( os.listdir('specto.png') )

from google.colab import files
files.download( "specto.png" ) 



有办法解决这个问题吗?

ax.get\u legend
引用函数对象本身,
ax.get\u legend()
(注意括号)调用函数并返回实例或
None
。语法应该是

ax.get_legend().remove()
但是,如果未向绘图中添加图例,则会引发

AttributeError
NoneType
对象没有属性
remove

所以最好用
try
except
子句来保护它,除非你提前知道会有一个传说


编辑 根据注释,您会对以下内容感到困惑,因此,当在行之前引发异常时,为什么它“似乎有效”

图颜色条(img)
它根本就不会绘制颜色条,因为它没有到达那条线。如果你不想要一个色条,那就把线去掉

ax.get_legend().remove()
图颜色条(im)

你会得到一个没有色条的光谱图。

我加了括号,得到了正确结果的AttributeError。频谱图似乎总是有一个图例-但是当我做
ax.get_legend().remove()
,它似乎是如何工作的,但有一个错误-有没有办法让它在没有错误的情况下工作?