[PYTHON] Superposition transparente de l'histogramme par Matplotlib

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 hist.png

Recommended Posts

Superposition transparente de l'histogramme par Matplotlib
histogramme avec matplotlib
[Calcul scientifique / technique par Python] histogramme, visualisation, matplotlib
python --Exporte l'histogramme bidimensionnel par Matplotlib sous forme de tableau
pandas Matplotlib Résumé par utilisation
comportement de matplotlib: histgramme normé
Affichage graphique en temps réel par matplotlib
Extrait des paramètres de l'histogramme matplotlib
Ajouter le ratio cumulatif à l'histogramme matplotlib
Afficher la ligne de division dans l'histogramme matplotlib
Créer une application graphique par Kivy (y compris matplotlib)
Écrire un histogramme empilé avec matplotlib