Итак, похоже, что панели ошибок создаются с помощью объекта Line2D;то есть пунктирная линия строится с точками данных, соответствующими позициям полосы ошибок (x [i], y [i] + yerr [i]).Черточки в строке всегда одинаковы, потому что они просто символы.Это явно не работает для полярного сюжета.Таким образом, эту настройку панели ошибок необходимо удалить, и каждую строку ошибок необходимо добавлять отдельно, с линией, имеющей правильную ориентацию.
Вот процедура, которая делает это:
from matplotlib.lines import Line2D
from math import acos,sqrt
def correct_errorbar(ax,barlen=50,errorline=1):
"""
A routine to remove default y-error bars on a bar-based pie chart and
replace them with custom error bars that rotate with the pie chart.
ax -- the axes object that contains the polar coordinate bar chart
barlen -- the perpendicular length of each error bar
errorline -- the number of the Line2D object that represents the original
horizontal error bars.
barlen will depend on the magnitude of the "y" values, ie the radius.
This routine was tested with a plot consisting solely of bar chart, and
if other Line2D objects are added, either directly or through further
plot commands, errorline many need to be adjusted from its default value.
"""
# get error bar positions
x,y = ax.lines[errorline].get_data()
# remove incorrect bars
del ax.lines[errorline]
# add new lines fixing bars
for i in range(len(y)):
r = sqrt(barlen*barlen/4+y[i]*y[i])
dt = acos((y[i])/(r))
newline = Line2D([x[i]-dt,x[i]+dt],[r,r],lw=barlen/100.)
ax.add_line(newline)