Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro TypeError: 'Text' object is not callable

ao rodar o código:

fig,ax = plt.subplots(figsize = (20,6))

ax.title('Consumo de Cerveja', fontsize = 20) ax.set_ylabel('Litros', fontsize = 16) ax.set_xlabel('Dias', fontsize = 16) ax = dados['consumo'].plot(fontsize = 14)

apresenta o seguinte erro:

TypeError Traceback (most recent call last) Cell In[35], line 3 1 fig,ax = plt.subplots(figsize = (20,6)) ----> 3 ax.title('Consumo de Cerveja', fontsize = 20) 4 ax.set_ylabel('Litros', fontsize = 16) 5 ax.set_xlabel('Dias', fontsize = 16)

TypeError: 'Text' object is not callable

como solucionar?

1 resposta
solução!

consegui achar o erro