填充等高线图顶部的绘图点会增加大量空白

时间:2012-02-21 15:19:44

标签: python plot matplotlib

我有以下Python代码,我用它来绘制填充等高线图:

  def plot_polar_contour(values, azimuths, zeniths):
  theta = np.radians(azimuths)
  zeniths = np.array(zeniths)

  values = np.array(values)
  values = values.reshape(len(azimuths), len(zeniths))

  r, theta = np.meshgrid(zeniths, np.radians(azimuths))
  fig, ax = subplots(subplot_kw=dict(projection='polar'))
  ax.set_theta_zero_location("N")
  ax.set_theta_direction(-1)
  cax = ax.contourf(theta, r, values, 30)
  autumn()
  cb = fig.colorbar(cax)
  cb.set_label("Pixel reflectance")
  show()

这给了我一个类似的情节:

enter image description here

但是,当我在ax.plot(0, 30, 'p')之前添加行show()时,我得到以下内容:

enter image description here

似乎只是添加一个点(在原始轴范围内)就会在半径轴上拧紧轴范围。

这是设计,还是这个bug?你有什么建议去修理它?我是否需要手动调整轴范围,还是有办法停止额外的绘图命令吗?

1 个答案:

答案 0 :(得分:5)

如果未明确指定轴自动缩放模式,plot将使用“松散”自动缩放,contourf将使用“紧密”自动缩放。

非极轴也会发生同样的事情。 E.g。

import matplotlib.pyplot as plt
import numpy as np

plt.imshow(np.random.random((10,10)))
plt.plot([7], [7], 'ro')
plt.show()

您有很多选择。

  1. 在代码中的某个位置明确调用ax.axis('image')ax.axis('tight')
  2. scalex=Falsescaley=False作为关键字参数传递给plot
  3. 手动设置轴限制。
  4. 最简单,最易读的只是明确地调用ax.axis('tight'),i.m.o。