Pythonにおいてmatplotlibを使って透明なヒストグラムを重ね書きする.
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()
alphaで透明度を調整できます.0で完全に透明.1で透明度0.