For some reasons, when I try to plot (theta = 0, r = 0) using the following code :
import matplotlib.pyplot as plt
plt.polar(0, 0, marker='x')
plt.show()
The point is not centered :
I was able to reproduce this error multiple times on my computer and on Repl.it : Link
So, how can I center the polar plot, so that the x shows in the center of it ?

