Überschreiben Sie ein transparentes Histogramm mit matplotlib in 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()
Sie können die Transparenz mit Alpha anpassen. 0 ist vollständig transparent. 1 für Transparenz 0.
Ausführungsergebnis
Recommended Posts