加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
4.3 图中图.py 707 Bytes
一键复制 编辑 原始数据 按行查看 历史
汉塞大叔 提交于 2020-09-24 08:44 . update README.md.
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()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化