matplotlib grid()设置网格线外观的实现

作者:mighty13 时间:2021-08-26 08:39:13 

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()函数演示

matplotlib grid()设置网格线外观的实现


import matplotlib.pyplot as plt

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


def grid(self, b=None, which='major', axis='both', **kwargs):
   cbook._check_in_list(['x', 'y', 'both'], axis=axis)
   if axis in ['x', 'both']:
     self.xaxis.grid(b, which=which, **kwargs)
   if axis in ['y', 'both']:
     self.yaxis.grid(b, which=which, **kwargs)

xaxisXAxis类的实例,yaxisYAxis类的实例,XAxisYAxis类的基类为Axis

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


def grid(self, b=None, which='major', **kwargs):
 if b is not None:
   if 'visible' in kwargs and bool(b) != bool(kwargs['visible']):
     raise ValueError(
       "'b' and 'visible' specify inconsistent grid visibilities")
   if kwargs and not b: # something false-like but not None
     cbook._warn_external('First parameter to grid() is false, '
                'but line properties are supplied. The '
                'grid will be enabled.')
     b = True
 which = which.lower()
 cbook._check_in_list(['major', 'minor', 'both'], which=which)
 gridkw = {'grid_' + item[0]: item[1] for item in kwargs.items()}
 if 'grid_visible' in gridkw:
   forced_visibility = True
   gridkw['gridOn'] = gridkw.pop('grid_visible')
 else:
   forced_visibility = False

if which in ['minor', 'both']:
   if b is None and not forced_visibility:
     gridkw['gridOn'] = not self._minor_tick_kw['gridOn']
   elif b is not None:
     gridkw['gridOn'] = b
   self.set_tick_params(which='minor', **gridkw)
 if which in ['major', 'both']:
   if b is None and not forced_visibility:
     gridkw['gridOn'] = not self._major_tick_kw['gridOn']
   elif b is not None:
     gridkw['gridOn'] = b
   self.set_tick_params(which='major', **gridkw)
 self.stale = True

来源:https://blog.csdn.net/mighty13/article/details/113854397

标签:matplotlib,grid(),网格线
0
投稿

猜你喜欢

  • JavaScript转换与解析JSON方法实例详解

    2024-04-17 10:22:44
  • 基于jQuery.validate及Bootstrap的tooltip开发气泡样式的表单校验组件思路详解

    2024-04-16 10:27:29
  • MySQL临时表的简单用法介绍

    2024-01-13 10:03:56
  • python中wordcloud安装的方法小结

    2022-07-11 04:29:44
  • java正则表达式解析html示例分享

    2023-06-13 15:53:42
  • perl用变量做句柄介绍

    2022-12-18 22:19:01
  • Python按照list dict key进行排序过程解析

    2023-12-06 08:19:06
  • 比较详细的Asp伪静态化方法及Asp静态化探讨

    2011-04-14 10:41:00
  • Python标准库json模块和pickle模块使用详解

    2021-12-24 16:17:14
  • python结合shell自动创建kafka的连接器实战教程

    2023-01-06 19:17:13
  • python对json的相关操作实例详解

    2022-03-27 20:15:06
  • 用Dreamweaver MX实现网站批量更新

    2009-09-13 18:39:00
  • 跟老齐学Python之关于循环的小伎俩

    2022-07-20 07:03:36
  • 简单了解Python变量作用域正确使用方法

    2022-02-03 04:18:55
  • python实现简单的井字棋小游戏

    2022-06-30 10:48:05
  • 将django项目部署到centos的踩坑实战

    2021-05-14 06:00:22
  • 排序的人文魅力

    2008-05-06 12:47:00
  • 用CSS实现图片等比例缩放

    2008-01-18 21:10:00
  • Centos部署django服务nginx+uwsgi的方法

    2022-03-18 07:47:26
  • 什么是gzip,人肉gzip?

    2008-11-20 13:01:00
  • asp之家 网络编程 m.aspxhome.com