我无法控制使用 Matplotlib 的hist
函数绘制的直方图的颜色和线型stacked=True
。对于单个非堆叠直方图,我没有问题:
import pylab as P
mu, sigma = 200, 25
x0 = mu + sigma*P.randn(10000)
n, bins, patches = P.hist(
x0, 20,
histtype='stepfilled',
facecolor='lightblue'
)
然而,当我引入额外的直方图时,
import pylab as P
mu, sigma = 200, 25
x0 = mu + sigma*P.randn(10000)
x1 = mu + sigma*P.randn(7000)
x2 = mu + sigma*P.randn(3000)
n, bins, patches = P.hist(
[x0,x1,x2], 20,
histtype='stepfilled',
stacked=True,
facecolor=['lightblue','lightgreen','crimson']
)
它引发以下错误:
ValueError: to_rgba: Invalid rgba arg "['lightblue', 'lightgreen', 'crimson']"
could not convert string to float: lightblue
使用该color=['lightblue', 'lightgreen', 'crimson']
选项确实有效,但我想分别直接控制填充和线条颜色,同时能够使用命名的 Matplotlib 颜色。我使用的是 Matplotlib 1.2.1 版。