Estou com dúvida, pois este código esta gerando uma figura em branco e outra figura com o gráfico da temp_min sobre a temp_max.
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(20,6), sharex = True, sharey = True)
ax1.set_ylabel('Temperatura', fontsize = 20)
ax1.set_xlabel('Dias', fontsize = 20)
ax1 = dados['temp_min'].plot()
ax2 = dados['temp_max'].plot()
Qual a maneira correta para gerar um gráfico em cada figura ?