# these are matplotlib.patch.Patch properties
props = dict(boxstyle='round', facecolor='wheat', alpha=0.5)
# place a text box in upper left in axes coords
ax.text(0.05, 0.95, textstr, transform=ax.transAxes, fontsize=14,
verticalalignment='top', bbox=props)
# place a text box in lower left in axes coords
ax.text(0.05, 0.05, textstr, transform=ax.transAxes, fontsize=14,
verticalalignment='bottom', bbox=props)
1条答案
按热度按时间mum43rcc1#
下面是示例中的代码:
Matplotlib坐标
使用
transform=ax.transAxes
,我们可以使用坐标系将元素放入图中,其中点(0,0)位于左下角,(0,1)位于左上角,(1,1)位于右上角,依此类推。具体而言:如果我们使用position(0,0)放置一个文本框,则会在左下角放置一个名为
anchor
的特定点。要更改锚,需要在函数调用中添加两个参数:verticalalignment
(可能值:center
、top
、bottom
、baseline
)和horizontalalignment
(可能值:x一米八氮一x、x一米九氮一x、x一米十氮一x)。所以要把盒子放在左下角,你需要把盒子的左下角放在图的左下角:
无论如何,这里是ipython-notebook with example for all placements的链接。