在matplotlib中,可以使用set_xlim()
和set_ylim()
方法来转换坐标轴。
matplotlib.pyplot
模块:import matplotlib.pyplot as plt
fig, ax = plt.subplots()
# 绘制原始数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 30, 40, 50]
ax.plot(x, y)
# 设置x轴范围为[0, 10]
ax.set_xlim(0, 10)
# 设置y轴范围为[0, 100]
ax.set_ylim(0, 100)
完整的代码示例:
import matplotlib.pyplot as plt
# 创建图形对象和子图对象
fig, ax = plt.subplots()
# 绘制原始数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 30, 40, 50]
ax.plot(x, y)
# 转换坐标轴
ax.set_xlim(0, 10)
ax.set_ylim(0, 100)
# 显示图形
plt.show()
这样,就可以在matplotlib中转换坐标轴了。
领取专属 10元无门槛券
手把手带您无忧上云