如何在matplotlib中使用grid()函数设置网格线外观-mile米乐体育

本篇文章为大家展示了如何在matplotlib中使用grid()函数设置网格线外观,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

grid()函数概述

grid()函数用于设置绘图区网格线。grid()的函数签名为matplotlib.pyplot.grid(b=none, which='major', axis='both', **kwargs)grid()的参数如下:

  • b:是否显示网格线。布尔值或none,可选参数。如果没有关键字参数,则btrue,如果bnone且没有关键字参数,相当于切换网格线的可见性。

  • which:网格线显示的尺度。字符串,可选参数,取值范围为{'major', 'minor', 'both'},默认为'both''major'为主刻度、'minor'为次刻度。

  • axis:选择网格线显示的轴。字符串,可选参数,取值范围为{'both', 'x', 'y'},默认为'both'`。

  • **kwargsline2d线条对象属性。

grid()的返回值为none

grid()函数演示

importmatplotlib.pyplotasplt  plt.subplot(341) #grid()默认样式 plt.plot([1,1]) plt.grid() plt.annotate('grid()',(0,1)) plt.subplot(342) #因为默认没有网格线,所以grid(none)显示网格线 plt.plot([1,1]) plt.grid(none) plt.annotate('grid(none)',(0,1)) plt.subplot(343) #因为设置了网格线,所以grid(none)切换为不显示网格线 plt.plot([1,1]) plt.grid(true) plt.grid(none) plt.annotate('grid(none)',(0,1)) plt.subplot(344) #因为默认没有网格线 plt.plot([1,1]) plt.annotate("default",(0,1)) plt.subplot(345) #只显示主刻度网格线 plt.plot([1,1]) plt.grid(which='major') plt.annotate("which='major'",(0,1)) plt.subplot(346) #只显示次刻度网格线,因为没有次刻度,所以无网格线 plt.plot([1,1]) plt.grid(which='minor') plt.annotate("which='minor'",(0,1)) plt.subplot(347) #同时显示主刻度、次刻度网格线 plt.plot([1,1]) plt.grid(which='both') plt.annotate("which='both'",(0,1)) plt.subplot(348) plt.plot([1,1]) #默认同时显示主刻度、次刻度网格线 plt.grid() plt.annotate("default",(0,1)) plt.subplot(349) #只显示x轴网格线 plt.plot([1,1]) plt.grid(axis='x') plt.annotate("axis='x'",(0,1)) plt.subplot(3,4,10) #只显示y轴网格线 plt.plot([1,1]) plt.grid(axis='y') plt.annotate("axis='y'",(0,1)) plt.subplot(3,4,11) #同时显示xy轴网格线 plt.plot([1,1]) plt.grid(axis='both') plt.annotate("axis='both'",(0,1)) plt.subplot(3,4,12) #默认显示xy轴网格线 plt.plot([1,1]) plt.grid() plt.annotate("default",(0,1)) plt.show()

原理

pyplot.grid()其实调用的是gca().grid(),即aexs.grid()

底层相关函数有:axis.grid()

axes.grid()源码(matplotlib/axes/_base.py

defgrid(self,b=none,which='major',axis='both',**kwargs): cbook._check_in_list(['x','y','both'],axis=axis) ifaxisin['x','both']: self.xaxis.grid(b,which=which,**kwargs) ifaxisin['y','both']: self.yaxis.grid(b,which=which,**kwargs)

xaxisxaxis类的实例,yaxisyaxis类的实例,xaxisyaxis类的基类为axis

axis.grid()源码(matplotlib/axis.py

defgrid(self,b=none,which='major',**kwargs): ifbisnotnone: if'visible'inkwargsandbool(b)!=bool(kwargs['visible']): raisevalueerror( "'b'and'visible'specifyinconsistentgridvisibilities") ifkwargsandnotb:#somethingfalse-likebutnotnone cbook._warn_external('firstparametertogrid()isfalse,' 'butlinepropertiesaresupplied.the' 'gridwillbeenabled.') b=true which=which.lower() cbook._check_in_list(['major','minor','both'],which=which) gridkw={'grid_' item[0]:item[1]foriteminkwargs.items()} if'grid_visible'ingridkw: forced_visibility=true gridkw['gridon']=gridkw.pop('grid_visible') else: forced_visibility=false  ifwhichin['minor','both']: ifbisnoneandnotforced_visibility: gridkw['gridon']=notself._minor_tick_kw['gridon'] elifbisnotnone: gridkw['gridon']=b self.set_tick_params(which='minor',**gridkw) ifwhichin['major','both']: ifbisnoneandnotforced_visibility: gridkw['gridon']=notself._major_tick_kw['gridon'] elifbisnotnone: gridkw['gridon']=b self.set_tick_params(which='major',**gridkw) self.stale=true

上述内容就是如何在matplotlib中使用grid()函数设置网格线外观,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注恰卡编程网行业资讯频道。

展开全文
内容来源于互联网和用户投稿,文章中一旦含有米乐app官网登录的联系方式务必识别真假,本站仅做信息展示不承担任何相关责任,如有侵权或涉及法律问题请联系米乐app官网登录删除

最新文章

网站地图