pthon 柱状图给个其中个柱状的颜色
时间: 2023-03-25 08:03:41 浏览: 247
多色PPT柱状图
可以使用 Matplotlib 库中的 bar 函数来绘制柱状图,并通过 color 参数来指定柱状的颜色,例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
colors = ['r', 'g', 'b', 'y', 'm']
plt.bar(x, y, color=colors)
plt.show()
```
以上代码中,x 和 y 分别表示柱状图的 x 轴和 y 轴数据,colors 则是一个列表,包含了每个柱状的颜色。在 bar 函数中,我们将 color 参数设置为 colors,即可实现柱状图的颜色自定义。
阅读全文