11 Star 34 Fork 11

南寻/python数据可视化建图

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
坐标轴范围.py 263 Bytes
一键复制 编辑 原始数据 按行查看 历史
南寻 提交于 2017-07-05 14:22 . 第三次提交
#coding:utf-8
import matplotlib.pyplot as plt
import numpy as np
x=np.random.rand(5)
fig=plt.figure()
ax1=fig.add_subplot(111)
ax1.plot(x,x*x)
'''
调整坐标轴
ax1.axis([xmin,xmax,ymin,ymax])
ax1.set_xlim(xmin,xmax)
ax1.set_ylim(ymin,ymax)
'''
plt.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nanxun/pythonshujukeshihuajiantu.git
git@gitee.com:nanxun/pythonshujukeshihuajiantu.git
nanxun
pythonshujukeshihuajiantu
python数据可视化建图
master

搜索帮助