1import numpy as np
2import matplotlib.pyplot as plt
3r = np.arange(0, 2, 0.01)
4theta = 2 * np.pi * r
5fig, ax = plt.subplots(subplot_kw={'projection': 'polar'})
6ax.plot(theta, r)
7ax.set_rmax(2)
8ax.set_rticks([0.5, 1, 1.5, 2])  # Less radial ticks
9ax.set_rlabel_position(-22.5# Move radial labels away from plotted line
10ax.grid(True)
11ax.set_title("A line plot on a polar axis", va='bottom')
12plt.savefig('ex218.png', dpi=72)
13plt.show()

Discover more from Tips and Hints for Aerospace Engineers

Subscribe now to keep reading and get access to the full archive.

Continue reading