如何使用pyplot旋转绘图x轴和y轴

时间:2018-03-27 15:46:52

标签: python matplotlib

import matplotlib.pyplot as plt
import numpy as np

x1 = [0, 0.02, 0.04, 0.08, 0.12, 0.16, 0.2]
y1 = [0.0005, 0.052, 0.0905, 0.1675, 0.2485, 0.3225, 0.4035]

plt.scatter(x1, y1)
plt.title("y-x scatter")
plt.xlabel("x")
plt.ylabel("y")
plt.show()

它的工作原理如下: enter image description here

但我的目标是这样的图像:

enter image description here

如何使用matplotlib旋转图像?

2 个答案:

答案 0 :(得分:0)

如果您不关心比例尺上的负数,您可以简单地:plt.scatter([-y for y in y1], x1)

您还需要更改轴上的标签,但这会在垂直轴上绘制x,在水平负值上绘制y,从右到左绘制。

另一方面,如果要旋转图像,可以将其保存并旋转到文件,使用其他工具旋转并读取该文件。

答案 1 :(得分:0)

如果没有完全重写,您无法旋转绘图上的工具栏。这看起来有点太多了,所以我会把它留下来。

除此之外,在绘图中旋转所有元素并交换x和y轴的角色没有大问题。具体来说,

  • 所有文本都可以获得rotation参数。
  • 可以简单地交换数据,即scatter(y,x)
  • 轴可以反转,ax.invert_xaxis()
  • 刻度线的位置可以设置为右侧ax.yaxis.tick_right()
  • 可以使用通常的文本元素模拟“标题”。

Compelte代码:

import matplotlib.pyplot as plt

x1 = [0, 0.02, 0.04, 0.08, 0.12, 0.16, 0.2]
y1 = [0.0005, 0.052, 0.0905, 0.1675, 0.2485, 0.3225, 0.4035]

fig,ax=plt.subplots(figsize=plt.rcParams["figure.figsize"][::-1])
fig.subplots_adjust(left=0.1, right=0.875, top=0.9,bottom=0.125)

ax.scatter(y1, x1)

ax.set_ylabel("x", rotation=90)
ax.yaxis.tick_right()
ax.yaxis.set_label_position("right")
ax.set_xlabel("y", rotation=180)
ax.invert_xaxis()

plt.setp(ax.get_xticklabels(), rotation=90, va="top", ha="center")
plt.setp(ax.get_yticklabels(), rotation=90, va="center", ha="left")

ax.text(-0.05,0.5,"y-x scatter", ha="center", va="center",
        transform=ax.transAxes, rotation=90)


plt.show()

enter image description here