如何在matplotlib中切换轴?

时间:2010-03-02 08:58:45

标签: python matplotlib

我喜欢在用matplotlib绘制图形后用x轴切换x轴?有什么简单的方法吗?提前谢谢。

2 个答案:

答案 0 :(得分:3)

我想这是一种方法,如果你真的这样做 想要更改现有情节的数据:

首先执行此代码以获得数字:

# generate a simple figure
f, ax = plt.subplots()
ax.plot([1,2,3,4,5], [5,6,7,8,9])
ax.set_xlim([0, 10])
ax.set_ylim([0, 10])

然后使用它来切换现有行的数据

# get data from first line of the plot
newx = ax.lines[0].get_ydata()
newy = ax.lines[0].get_xdata()

# set new x- and y- data for the line
ax.lines[0].set_xdata(newx)
ax.lines[0].set_ydata(newy)

答案 1 :(得分:-1)

您只需在绘图功能中切换x和y参数:

I[3]: x = np.linspace(0,2*np.pi, 100)

I[4]: y = np.sin(x)

I[5]: plt.plot(x,y)

I[6]: plt.figure(); plt.plot(y,x)