我目前有一个工作程序可以创建类似于下面类似代码的饼图:
import matplotlib.pyplot as plt
def get_name_counts(Names):
if "Bob" in Names:
NameList[0] +=1
elif "Ann" in Names:
NameList[1] +=1
elif "Ron" in Names:
NameList[2] +=1
elif "Zee" in Names:
NameList[3] +=1
def plot_dist(Values, Labels, Title):
plt.title(Title)
plt.pie(Values, labels = Labels, autopct='%0.0f%%', colors = ('g', 'r', 'y', 'c'))
NameList = [0]*4
for Line in File:
for Names in Line:
get_name_count(Names)
pp=PdfPages("myPDF.pdf")
MyPlot = plt.figure(1, figsize=(5,5))
Labels = ('Bob', 'Ann', 'Exon', 'Ron', 'Zee')
Values = NameList
plot_dist(Values, Labels, "Name Distribution")
pp.savefig()
plt.close()
pp.close()
但是,我有几个不同的列表,我想创建饼图,我想知道是否有更简单的方法来做到这一点。我可以制作一个能够检测每个唯一名称并获得相关计数的函数,而不必为每个图表指定确切的名称吗?
答案 0 :(得分:0)
您可以在You列表上运行循环,并使计数器具有唯一的图像文件名:
#!/usr/bin/python3
from matplotlib import pyplot as plt
data = [range(n) for n in range(4,9)]
for i, x in enumerate(data):
fig = plt.figure()
ax = fig.add_subplot(111)
ax.pie(x, labels=x)
fig.savefig("pie{0}.png".format(i))
这绘制了data
的第一级元素,总共5个饼图。