Oi, pessoal! compartilhando um jeito de ver os 4 histogramas juntos
fig, axs = plt.subplots(2,2,figsize=(16,6), sharey=True)
axs[0,0].hist(
x = df_limpo['temperatura'],
bins = 10,
edgecolor='black'
)
axs[0,1].hist(
x = df_limpo['sensacao_termica'],
bins = 10,
edgecolor='black'
)
axs[1,0].hist(
x = df_limpo['umidade'],
bins = 10,
edgecolor='black'
)
axs[1,1].hist(
x = df_limpo['velocidade_vento'],
bins = 10,
edgecolor='black'
)
axs[0,0].title.set_text('temperatura')
axs[0,1].title.set_text('sensacao_termica')
axs[1,0].title.set_text('umidade')
axs[1,1].title.set_text('velocidade_vento')
plt.tight_layout()
plt.show()