1 Star 0 Fork 11

郝连祥/python数据可视化建图

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
添加坐标轴.py 310 Bytes
一键复制 编辑 原始数据 按行查看 历史
南寻 提交于 2017-07-05 14:22 . 第三次提交
import matplotlib.pyplot as plt
import numpy as np
x=np.arange(2,20,1)
y1=x*x
y2=np.log(x)
fig=plt.figure()
ax1=fig.add_subplot(111)
ax1.plot(x,y1)
ax1.set_ylabel("Y1")
'''
twinx添加一根X坐标轴
'''
ax2=ax1.twinx()
ax2.plot(x,y2,'r')
ax2.set_ylabel("Y2")
ax1.set_xlabel("compare Y1 and Y2")
plt.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wuvi/pythonshujukeshihuajiantu.git
git@gitee.com:wuvi/pythonshujukeshihuajiantu.git
wuvi
pythonshujukeshihuajiantu
python数据可视化建图
master

搜索帮助