博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Matplotlib Tutorial
阅读量:5919 次
发布时间:2019-06-19

本文共 1046 字,大约阅读时间需要 3 分钟。

hot3.png

Simple Plot,单个图表

#Simple Plotimport matplotlib.pyplot as pltimport numpy as np#Data for plottingt=np.arange(0.0,2.0,0.01)s=1+np.sin(2*np.pi*t)# Note that using plt.subplots below is equivalent to using# fig = plt.figure and then ax = fig.add_subplot(111)fig,ax=plt.subplots()ax.plot(t,s)      #创建图表#设置图表格式ax.set(xlabel='time(s)',ylabel='voltage(mV)',      title='About as simple as it gets,folks')ax.grid()         #显示网格线plt.show()                #显示图片

142925_EVZq_2718942.png

Multiple Subplots in one figure,多个图表

#Multiple Subplotsimport matplotlib.pyplot as pltimport numpy as np#Data for plot#np.linspace default number=50x1=np.linspace(0.0,5.0)x2=np.linspace(0.0,2.0)y1=np.cos(2*np.pi*x1)y2=np.cos(2*np.pi*x2)#创建第1张图plt.subplot(2,1,1)plt.plot(x1,y1,'o-')plt.title('A tale of 2 subplots')      #标题栏plt.ylabel('Damped oscillation')       #y轴标签 #创建第2张图plt.subplot(2,1,2)plt.plot(x2,y2,'.-')plt.xlabel('time(s)')                 #x轴标签 plt.ylabel('Undamped')                #y轴标签plt.show()                            #显示图片

 

转载于:https://my.oschina.net/tedzheng/blog/1593656

你可能感兴趣的文章
python 字符串操作
查看>>
用 jetbrick-template 来实现 HTML layout 功能
查看>>
通过 getResources 找不到jar包中的资源和目录的解决方法
查看>>
ssh整理
查看>>
敏捷个人2012.1月份线下活动报道:谈谈职业
查看>>
重拾写作,分享知识,贡献思想
查看>>
Ubuntu12.04安装和管理VirtualBox
查看>>
我的友情链接
查看>>
VMware虚拟机上配置nginx后,本机无法访问问题
查看>>
我的PMP备考经历
查看>>
获得当前应用程序的文件路径的几种方法
查看>>
运行VTK自带的Qt例子GraphicsView遇到的程序运行崩溃问题
查看>>
音乐达人秀:Adobe Audition实战200例
查看>>
2018-09-06期 Sqoop工具安装配置
查看>>
第二篇:Python高性能Web框架tornado源码剖析之待请求阶段
查看>>
红黑树算法
查看>>
windows terminal server
查看>>
IE6不能接收session id
查看>>
linux shell 入门
查看>>
在CentOS6上搭建LNMP环境(上)
查看>>