plt画的图逆时针旋转90度
时间: 2023-08-28 21:06:09 浏览: 362
可以通过设置x轴和y轴的标签来实现逆时针旋转90度:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
# 绘制图形
plt.plot(x, y)
# 设置x轴和y轴标签并旋转90度
plt.xlabel('x轴', rotation=90)
plt.ylabel('y轴', rotation=90)
# 显示图形
plt.show()
```
其中,rotation参数用于控制标签的旋转角度。如果想要将整个图形逆时针旋转90度,可以使用`plt.subplots_adjust()`函数调整图像的位置和大小。例如:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
# 绘制图形
fig, ax = plt.subplots()
ax.plot(x, y)
# 设置x轴和y轴标签并旋转90度
ax.set_xlabel('x轴', rotation=90)
ax.set_ylabel('y轴', rotation=90)
# 调整图像位置和大小并旋转90度
fig.set_size_inches(6, 6)
fig.subplots_adjust(left=0.2, bottom=0.2)
fig.savefig('output.png', bbox_inches='tight', pad_inches=0.0, dpi=300, transparent=True)
# 显示图形
plt.show()
```
其中,`bbox_inches='tight'`参数用于剪裁图像周围的空白部分;`pad_inches=0.0`参数用于取消标签与图像之间的间距;`dpi=300`参数用于设置图像的分辨率;`transparent=True`参数用于将图像保存为透明背景。
阅读全文