我使用以下示例Example創建兩個極座標輪廓子圖。當我創建PDF格式時,我想通過更改無花果大小來刪除大量的空白區域。更改matplotlib極座標輪廓中的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()
非常感謝你,這正是我想要的! – James 2013-03-10 10:12:00