Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将绘图和表格都放在图中,但我想要一些空格将两者分开。如何将表格/绘图定位在任意位置?我现在拥有的是在 x 轴下立即显示的值表(因此它实际上与我的轴标签发生碰撞......)
我根本不知道matplotlib...文档也写得不太好...
要在图中定位某些东西,您必须使用函数 set_position([left, bottom, width, height])。例子:
matplotlib.pyplot.axes().set_position([0.15, 0.20, 0.80, 0.70])