11 Star 34 Fork 11

南寻/python数据可视化建图

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
折线图.py 210 Bytes
一键复制 编辑 原始数据 按行查看 历史
南寻 提交于 2017-06-05 22:17 . 2
#coding:utf-8
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import numpy as np
x=np.linspace(-10000,10000,100) #将-10到10等区间分成100份
y=x**2+x**3+x**7
plt.plot(x,y)
plt.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nanxun/pythonshujukeshihuajiantu.git
git@gitee.com:nanxun/pythonshujukeshihuajiantu.git
nanxun
pythonshujukeshihuajiantu
python数据可视化建图
master

搜索帮助