共计 686 个字符,预计需要花费 2 分钟才能阅读完成。
使用 Python 绘制堆积柱状图可以使用 matplotlib
库。以下是一个简单的示例代码:
import numpy as np
import matplotlib.pyplot as plt
# 创建数据
categories = ['A', 'B', 'C', 'D', 'E']
data1 = [4, 6, 8, 5, 7]
data2 = [2, 5, 6, 3, 4]
data3 = [1, 3, 4, 2, 5]
# 创建堆积柱状图
plt.figure(figsize=(10, 6))
plt.bar(categories, data1, label='Data 1')
plt.bar(categories, data2, bottom=data1, label='Data 2')
plt.bar(categories, data3, bottom=np.array(data1)+np.array(data2), label='Data 3')
# 添加图例和标签
plt.legend()
plt.xlabel('Category')
plt.ylabel('Value')
plt.title('Stacked Bar Chart')
# 显示图像
plt.show()
运行以上代码将生成一个堆积柱状图,其中包含三个数据系列(Data 1、Data 2 和 Data 3)的堆积柱状图,每个数据系列都有五个类别(A、B、C、D 和 E)。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Python
2023-12-16