我试图在APLpy
中为彩条创建标题,但每次我都会收到以下错误:
AttributeError:'Colorbar' object has no attribute 'set_axis_label_text'
我使用的代码如下:
import aplpy
import matplotlib.pyplot as plt
fig = plt.figure()
f1 = aplpy.FITSFigure('random.fits', figure=fig)
f1.show_colorscale(stretch='arcsinh',cmap='Greys',interpolation="bicubic")
f1.add_colorbar()
f1.colorbar.set_width(0.3)
f1.colorbar.set_axis_label_text('title')
plt.show()
根据阅读文档,这应该工作 http://aplpy.readthedocs.org/en/v0.9.9/quick_reference.html
答案 0 :(得分:2)
请将APLpy更新到最新版本。我到处都看,但我在0.9.6
上找不到任何东西。因此,该方法可能会在以后的版本中引入。
我认为在0.9.9
的pull request #93中引入了为彩条设置标签。