在查看了matplotlib网站之后,我发现了一个饼图的示例代码,它在自定义和功能方面具有完美的属性。但是,我想改变字体(而不是大小)。我一直无法找到如何做到这一点的注解,你可以在这里看到.
如果我能通过名称指定字体(如'Helvetica'或'Times_New_Roman'),而不是在matplotlib中更改字体的其他方式,那就更好了。
下面是上面图片的代码.
import numpy as np
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal"))
recipe = ["225 g flour",
"90 g sugar",
"1 egg",
"60 g butter",
"100 ml milk",
"1/2 package of yeast"]
data = [225, 90, 50, 60, 100, 5]
wedges, texts = ax.pie(data, wedgeprops=dict(width=0.5), startangle=-40)
bbox_props = dict(boxstyle="square,pad=0.3", fc="w", ec="k", lw=0.72)
kw = dict(xycoords='data', textcoords='data', arrowprops=dict(arrowstyle="-"),
bbox=bbox_props, zorder=0, va="center")
for i, p in enumerate(wedges):
ang = (p.theta2 - p.theta1)/2. + p.theta1
y = np.sin(np.deg2rad(ang))
x = np.cos(np.deg2rad(ang))
horizontalalignment = {-1: "right", 1: "left"}[int(np.sign(x))]
connectionstyle = "angle,angleA=0,angleB={}".format(ang)
kw["arrowprops"].update({"connectionstyle": connectionstyle})
ax.annotate(recipe[i], xy=(x, y), xytext=(1.35*np.sign(x), 1.4*y),
horizontalalignment=horizontalalignment, **kw)
ax.set_title("Matplotlib bakery: A donut")
plt.show()
请注意,我也很困惑,我应该把特定于标签文本的代码行放在实际程序中的哪里。
谢谢...
1条答案
按热度按时间ocebsuys1#
要更改字体,可以在annotate函数中添加参数族
有更多可用的字体样式。您可以在Matplotlib文档中阅读更多有关它的信息。https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.annotate.html#matplotlib.pyplot.annotate