python matplotlib plt.bar
时间: 2024-05-26 12:09:41 浏览: 128
python matplotlib
5星 · 资源好评率100%
matplotlib 是 Python 中一个常用的数据可视化库,plt.bar() 是 matplotlib 中的一个函数,用于绘制柱状图。它可以根据提供的数据绘制柱状图,并可进行一些个性化设置。
plt.bar() 函数有多个参数,其中最重要的是两个数组 x 和 height。x 数组表示每个柱子的位置,height 数组表示每个柱子的高度。除此之外,还有一些参数可以用来设置柱状图的颜色、宽度、透明度等等。
以下是一个简单的示例代码:
```
import matplotlib.pyplot as plt
x = ['A', 'B', 'C', 'D', 'E']
height = [20, 35, 30, 25, 40]
plt.bar(x, height, color='green')
plt.title('Sample Bar Chart')
plt.xlabel('Categories')
plt.ylabel('Values')
plt.show()
```
该代码会生成一个包含 5 个柱子的柱状图,每个柱子代表一种类别,并且其高度表示该类别的值。
阅读全文