在Python中使用元组元素的列表生成频率直方图
要从Python中具有元组元素的列表生成频率直方图,我们可以执行以下步骤:-
- 设置图形大小并调整子图之间和周围的填充。
- 制作元组列表data。
- 迭代数据后制作频率和索引列表。
- 使用bar()方法绘制条形图。
- 要显示图形,请使用show()方法。
示例
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
data = [("a", 1), ("c", 3), ("d", 4), ("b", 2),
("e", 7), ("f", 3), ('g', 2)]
ind = []
fre = []
for item in data:
ind.append(item[0])
fre.append(item[1])
plt.bar(ind, fre)
plt.show()
输出
它将产生以下输出:-