代码拉取完成,页面将自动刷新
from matplotlib import pyplot as plt
X = [1, 2, 3, 4, 5, 6, 7]
Y = [1, 3, 4, 2, 5, 8, 6]
fig = plt.figure()
left, bottom, width, height = 0.1, 0.1, 0.8, 0.8
ax1 = fig.add_axes([left, bottom, width, height])
ax1.plot(X, Y, "red")
ax1.set_xlabel("X")
ax1.set_ylabel("Y")
ax1.set_title("title")
# 方法一
left, bottom, width, height = 0.2, 0.6, 0.25, 0.25
ax2 = fig.add_axes([left, bottom, width, height])
ax2.plot(X, Y, "blue")
ax2.set_xlabel("X")
ax2.set_ylabel("Y")
ax2.set_title("No 1")
# 方法二
left, bottom, width, height = 0.6, 0.2, 0.25, 0.25
plt.axes([left, bottom, width, height])
plt.plot(X, Y, "green")
plt.xlabel("X")
plt.ylabel("Y")
plt.title("No 2")
plt.show()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。