I am trying to create a radial column chart using python and can only figure out how to make a polar plot. I am trying to make something like this
Where the bars do not fan out away from the center.
My current code is:
ax = plt.subplot(111,projection = 'polar')
plt.bar(theta, y)
but the bars fan out, achieving what is detailed on matplotlib's site