次のような円グラフがあるとします。青から赤へのグラデーションとして、ベクトル内のいくつかの値に基づいてスライスに色を付けたいと思います。青は -1、赤は +1 で、1 より大きい値も -1 より小さい値もありません。
fracs = [33,33,33]
starting_angle = 90
axis('equal')
patches, texts, autotexts = pie(fracs, labels = None, autopct='%1.1f%%', startangle=90)
print patches[2]
for item in autotexts:
item.set_text("")
subplots_adjust(left=0.125, bottom=0.1, right=0.9, top=0.9, wspace=0.0, hspace=-0.4)
savefig('/home/superiois/Downloads/projectx3/GRAIL/pie2')
show()