如何更改由特定库(trackpy)给出的图的Matplotlib轴限制?

时间:2019-03-06 16:21:21

标签: python matplotlib trackpy

This function给了我一个情节。但是我想更改默认轴。它在文档中说ax是指:

ax:matplotlib轴对象,可选。

例如,我尝试将轴限制输入为ax =([0 100 0 500]),但它会将其识别为元组或列表。正确的输入方式是什么?

谢谢!

1 个答案:

答案 0 :(得分:1)

trackpy.plot_traj函数返回一个matplotlib轴对象。

因此,您将需要以下内容:

ax = trackpy.plot_traj(traj)
ax.set_xlim([0, 100])
ax.set_ylim([0, 500])