Ao tentar utilizar o código:
plt.figure(figzise = (15,12)) ax = plt.subplot(3, 1, 1) ax.set_title('Análise de vendas Alucar de 2017 e 2018', fontsize = 18, loc = 'left') sns.lineplot(x = 'mes', y = 'vendas', data = alucar) plt.subplot(3, 1, 2) sns.lineplot(x = 'mes', y = 'aumento', data = alucar) plt.subplot(3, 1, 3) sns.lineplot(x = 'mes', y = 'aceleracao', data = alucar) ax = ax
O seguinte erro foi apresentado:
TypeError: init() got an unexpected keyword argument 'figzise'
Alguém poderia me ajudar?