1 Star 0 Fork 0

dsqiu/colors-draw

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
a.py 393 Bytes
一键复制 编辑 原始数据 按行查看 历史
dsqiu 提交于 2024-12-14 19:49 . first commit
import matplotlib.pyplot as plt
# 数据点
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 创建图表
plt.figure()
# 绘制线条
plt.plot(x, y, marker='o', linestyle='-', color='b', label='Square Numbers')
# 添加标题和标签
plt.title('Simple Line Plot')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 添加网格
plt.grid(True)
# 添加图例
plt.legend()
# 显示图表
plt.show()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dsqiu/colors-draw.git
git@gitee.com:dsqiu/colors-draw.git
dsqiu
colors-draw
colors-draw
master

搜索帮助