• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    matplotlib之pyplot模块坐标轴标签设置使用(xlabel()、ylabel())

    在pyplot模块中可以使用xlabel()ylabel()函数设置xy轴的标签。这两个函数的使用方法非常相似。

    使用xlabel()设置x轴标签

    函数签名为matplotlib.pyplot.xlabel(xlabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
    参数作用及取值如下:

    返回值为Text对象。

    xlabel()相关rcParams为:

    #axes.labelsize:   medium # fontsize of the x any y labels
    #axes.labelpad:   4.0   # space between label and axis
    #axes.labelweight:  normal # weight of the x and y labels
    #axes.labelcolor:  black
    #xaxis.labellocation: center # alignment of the xaxis label: {left, right, center}
    

    底层相关函数为:
    Axes.set_xlabel(xlabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
    Axes.get_xlabel()

    案例

    设置x轴标签,并输出xlabel函数的返回值。
    返回值为Text对象,输出返回值的属性可知,标签文本的属性为_text。如果想获取标签文本,可使用Axes.get_xlabel方法获取。

    import matplotlib.pyplot as plt
    
    plt.plot([1, 1])
    a = plt.xlabel("x")
    print(a)
    print(vars(a))
    print(a._text)
    print(plt.gca().get_xlabel())
    plt.show()
    

    输出:

    Text(0.5, 0, 'x')
    {'_stale': True, 'stale_callback': None, '_axes': None, 'figure': Figure size 640x480 with 1 Axes>, '_transform': matplotlib.transforms.BlendedAffine2D object at 0x0000019EC1471F98>, '_transformSet': True, '_visible': True, '_animated': False, '_alpha': None, 'clipbox': None, '_clippath': None, '_clipon': True, '_label': '', '_picker': None, '_contains': None, '_rasterized': None, '_agg_filter': None, '_mouseover': False, 'eventson': False, '_oid': 0, '_propobservers': {}, '_remove_method': None, '_url': None, '_gid': None, '_snap': None, '_sketch': None, '_path_effects': [], '_sticky_edges': _XYPair(x=[], y=[]), '_in_layout': True, '_x': 0.5, '_y': 0, '_text': 'x', '_color': 'black', '_fontproperties': matplotlib.font_manager.FontProperties object at 0x0000019EC1471BE0>, '_usetex': False, '_wrap': False, '_verticalalignment': 'top', '_horizontalalignment': 'center', '_multialignment': None, '_rotation': None, '_bbox_patch': None, '_renderer': None, '_linespacing': 1.2, '_rotation_mode': None}
    x
    x
    

    使用ylabel()设置y轴标签

    函数签名为matplotlib.pyplot.ylabel(ylabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
    参数作用及取值如下:

    返回值为Text对象。

    xlabel()相关rcParams为:

    #axes.labelsize:   medium # fontsize of the x any y labels
    #axes.labelpad:   4.0   # space between label and axis
    #axes.labelweight:  normal # weight of the x and y labels
    #axes.labelcolor:  black
    #yaxis.labellocation: center # alignment of the yaxis label: {bottom, top, center}
    

    底层相关函数为:
    Axes.set_ylabel(ylabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)
    Axes.get_ylabel()

    案例

    添加y轴标签,并设置字体属性和背景色。

    import matplotlib.pyplot as plt
    
    font = {'family': 'serif',
        'color': 'darkred',
        'weight': 'normal',
        'size': 16,
        }
    plt.plot([1, 1])
    plt.ylabel("y", fontdict=font, backgroundcolor='grey')
    
    plt.show()
    

    到此这篇关于matplotlib之pyplot模块坐标轴标签设置使用(xlabel()、ylabel())的文章就介绍到这了,更多相关matplotlib 坐标轴标签内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • python 中文乱码问题深入分析
    • python 设置xlabel,ylabel 坐标轴字体大小,字体类型
    • matlab xlabel位置的设置方式
    上一篇:matplotlib之pyplot模块之标题(title()和suptitle())
    下一篇:python实现简单的学生管理系统
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    matplotlib之pyplot模块坐标轴标签设置使用(xlabel()、ylabel()) matplotlib,之,pyplot,模块,坐标轴,