2021-06-04
本来想用excel画个饼图嵌套,结果花费很长时间还是没搞定。使用python matplotlib搞定啦,上代码。
import matplotlib.pylab as plt
labels = [‘CLOSED’, ‘OPENED’, ‘ANALYZED’, ‘ACCESSED’, ‘IMPLEMENTED’]
p1 = [11, 2, 5, 3, 10]
labels2 = [“SW”, “OTHERS”]
def autopct_format(values):
def my_format(pct):
原创
2021-06-04 11:31:48 ·
130 阅读 ·
0 评论