Remplacez un histogramme transparent à l'aide de matplotlib en Python.
histgram.py
import numpy as np
import matplotlib.pyplot as plt
a = np.random.randn(10000)
plt.figure()
plt.hist(a-1, bins=100, alpha=0.3, histtype='stepfilled', color='r')
plt.hist(a+1, bins=100, alpha=0.3, histtype='stepfilled', color='b')
plt.show()
Vous pouvez ajuster la transparence avec alpha. 0 est complètement transparent. 1 pour la transparence 0.
Résultat d'exécution
Recommended Posts