This function给了我一个情节。但是我想更改默认轴。它在文档中说ax是指:
ax:matplotlib轴对象,可选。
例如,我尝试将轴限制输入为ax =([0 100 0 500]),但它会将其识别为元组或列表。正确的输入方式是什么?
谢谢!
答案 0 :(得分:1)
trackpy.plot_traj
函数返回一个matplotlib轴对象。
因此,您将需要以下内容:
ax = trackpy.plot_traj(traj)
ax.set_xlim([0, 100])
ax.set_ylim([0, 500])