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?