我有一个使用 matplotlib 绘制的饼图。除了这个饼图,我还有一个滑块,按下它会调用一个处理程序。我希望这个处理程序改变饼图的值。例如,如果饼图的标签分别为 60% 和 40%,我希望在按下滑块时将标签修改为 90% 和 10%。这是代码:
这将绘制饼图和滑块:
plt.axis('equal');
explode = (0, 0, 0.1);
plt.pie(sizes, explode=explode, labels=underlyingPie, colors=colorOption,
autopct='%1.1f%%', shadow=True, startangle=90)
plt.axis('equal')
a0 = 5;
axcolor = 'lightgoldenrodyellow'
aRisk = axes([0.15, 0, 0.65, 0.03], axisbg=axcolor)
risk = Slider(aRisk, 'Risk', 0.1, 100.0, valinit=a0)
risk.on_changed(update);
以下是事件处理程序,所需的功能是修改标签并重绘饼图
def update(val):
riskPercent = risk.val;
underlyingPie[0] = 10;
underlyingPie[1] = 90;
plt.pie(sizes, explode=explode, labels=lab, colors=colorOption,
autopct='%1.1f%%', shadow=True, startangle=90)
我也在画下面,我可以在同一个画布上同时得到饼图和下面的图吗?
fig = plt.figure();
ax1 = fig.add_subplot(211);
for x,y in zip(theListDates,theListReturns):
ax1.plot(x,y);
plt.legend("title");
plt.ylabel("Y axis");
plt.xlabel("X axis");
plt.title("my graph");
提前致谢