我正在使用以下示例示例创建两个极坐标子图。当我创建为 pdf 时,我想通过更改 figsize 来删除很多空白。
我通常知道如何更改 figsize,但我很难看到在此代码示例中放置它的位置。任何指导或提示将不胜感激。
非常感谢!
import numpy as np
import matplotlib.pyplot as plt
#-- Generate Data -----------------------------------------
# Using linspace so that the endpoint of 360 is included...
azimuths = np.radians(np.linspace(0, 360, 20))
zeniths = np.arange(0, 70, 10)
r, theta = np.meshgrid(zeniths, azimuths)
values = np.random.random((azimuths.size, zeniths.size))
#-- Plot... ------------------------------------------------
fig, ax = plt.subplots(subplot_kw=dict(projection='polar'))
ax.contourf(theta, r, values)
plt.show()