我无法在像这样的imshow图上获得与该图相同的高度的色条,但事后没有使用Photoshop。如何获得与之匹配的高度?
最佳答案
您可以使用matplotlib AxisDivider轻松完成此操作。
链接页面中的示例也可以在不使用子图的情况下运行:
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable
import numpy as np
plt.figure()
ax = plt.gca()
im = ax.imshow(np.arange(100).reshape((10,10)))
# create an axes on the right side of ax. The width of cax will be 5%
# of ax and the padding between cax and ax will be fixed at 0.05 inch.
divider = make_axes_locatable(ax)
cax = divider.append_axes("right", size="5%", pad=0.05)
plt.colorbar(im, cax=cax)
关于python - 设置Matplotlib颜色条大小以匹配图形,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18195758/