I'd like to plot 2 graphs (horizontally), and I'd like one to be a polar graph and the other cartesian. I have the following code which generates 2 cartesian graphs:
x = [1,2,3]
y = [1,2,3]
a = [2,3,4]
b = [5,7,5]
fig, (ax1,ax2) = plt.subplots(ncols = 2)
ax1.scatter(x,y)
ax2.scatter(a,b)
plt.show()
Note these are just random points I chose. How can I specify that I want, say the x-y plot, to be in polar?