This is just a horizontal graph in polar projection. By default, Matplotlib values will look slightly different.
ax = plt.subplot(projection='polar')
ax.barh(0, math.radians(150))
ax.barh(1, math.radians(300))
ax.barh(2, math.radians(270))
ax.barh(3, math.radians(320))

But it can be configured:
- Use
set_theta_zero_location()to start the bars from the north. - Use the
set_theta_direction()bars to go clockwise. set_rlabel_position() .set_thetagrids() set_rgrids() .
:
ax.set_theta_zero_location('N')
ax.set_theta_direction(-1)
ax.set_rlabel_position(0)
ax.set_thetagrids([0, 96, 192, 288], labels=[0, 20, 40, 60])
ax.set_rgrids([0, 1, 2, 3], labels=['a', 'b', 'c', 'd'])

, .
PS , , :
ax.barh([0, 1, 2, 3], np.radians([150, 300, 270, 320]),
color=plt.rcParams['axes.prop_cycle'].by_key()['color'])