When limiting the error, bar is that caps are drawn with the hline and vline , so the caps rotate incorrectly in polar coordinates (there is a problem for this, https://github.com/matplotlib/matplotlib/issues/441 ). An approximate workaround is to make caps zero:
import numpy as np import pylab as plt fig = plt.figure() ax = plt.axes(polar=True) r = np.array([5.31,5.29,5.25,5.19,5.09,4.92,4.67,4.27,3.75,3.56]) theta = 2*np.pi/360 * np.array(list(range(0, 100, 10))) ax.plot(theta, r, "ro") ax.errorbar(theta, r, yerr=1, xerr=.1, capsize=0) plt.show()

If you want theta error lines to be circular, you have to implement this. The easiest way -
th_err = 1 for th, _r in zip(theta, r): local_theta = np.linspace(-th_err, th_err, 15) + th local_r = np.ones(15) * _r ax.plot(local_theta, local_r, color='k', marker='') plt.show()
For small errors, this will not matter much, but it will be important for large errors.