gpt4 book ai didi

matplotlib之pyplot模块之标题(title()和suptitle())

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章matplotlib之pyplot模块之标题(title()和suptitle())由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

matplotlib 源码解析标题实现(窗口标题,标题,子图标题不同之间的差异)述简单比较了matplotlib中的标题.

使用title()设置子图标题

title()可同时在子图中显示中间、左侧、右侧3个标题。 函数签名为matplotlib.pyplot.title(label, fontdict=none, loc=none, pad=none, *, y=none, **kwargs) 参数作用及取值如下:

  • label:类型为字符串,即标题文本。
  • fontdict:类型为字典,控制文本的字体属性。默认值为:
?
1
2
3
4
5
{ 'fontsize' : rcparams[ 'axes.titlesize' ],
  'fontweight' : rcparams[ 'axes.titleweight' ],
  'color' : rcparams[ 'axes.titlecolor' ],
  'verticalalignment' : 'baseline' ,
  'horizontalalignment' : loc}
  • loc:取值范围为{'left', 'center', 'right'},默认值为rcparams["axes.titlelocation"]'center'),即标题的位置。
  • y:类型为浮点数,默认值为rcparams["axes.titley"] (none)。即标题在子图中的垂直距离,单位为子图高度的百分比,1.0在子图最顶部,默认值none则自动确定标题位置,避免与其他元素重叠。
  • pad:类型为浮点数,默认值为default: rcparams["axes.titlepad"] (6.0)。即标题与子图的填充距离(内边距)。
  • **kwargstext 对象关键字属性,用于控制文本的外观属性,如字体、文本颜色等。

返回值为text对象.

title()相关rcparams为:

?
1
2
3
4
5
6
7
#axes.titlelocation: center # alignment of the title: {left, right, center}
#axes.titlesize:   large  # fontsize of the axes title
#axes.titleweight:  normal # font weight of title
#axes.titlecolor:  auto  # color of the axes title, auto falls back to
                # text.color as default value
#axes.titley:    none  # position title (axes relative units). none implies auto
#axes.titlepad:   6.0   # pad between axes and title in points

底层相关方法为: axes.set_title(self, label, fontdict=none, loc=none, pad=none, *, y=none, **kwargs) axes.get_title(self, loc='center'):注意返回指定位置的标题文本.

案例

同时设置3个子图标题.

?
1
2
3
4
5
6
7
8
9
10
11
import matplotlib.pyplot as plt
 
# 注意,子图可以同时设置中间、左侧、右侧3个标题
plt.plot([ 1 , 1 ])
# 在右侧底部显示子图标题
plt.title( "right bottom" ,y = 0 ,loc = 'right' )
# 在左侧顶部显示子图标题
plt.title( "left top" ,y = 1 ,loc = 'left' )
# 显示默认子图标题
plt.title( "default" )
plt.show()

matplotlib之pyplot模块之标题(title()和suptitle())

使用suptitle()设置图像标题

为图像添加一个居中标题。 函数签名为matplotlib.pyplot.suptitle(t, **kwargs) 参数作用及取值如下:

  • t:类型为字符串,即标题文本。
  • x:类型为浮点数,即标题在图像水平方向相对位置,默认值为0.5
  • y:类型为浮点数,即标题在图像垂直方向相对位置,默认值为0.98
  • fontdict:类型为字典,控制文本的字体属性。默认值为:
?
1
2
3
4
5
{ 'fontsize' : rcparams[ 'axes.titlesize' ],
  'fontweight' : rcparams[ 'axes.titleweight' ],
  'color' : rcparams[ 'axes.titlecolor' ],
  'verticalalignment' : 'baseline' ,
  'horizontalalignment' : loc}
  • horizontalalignment, ha:类型为字符串,取值范围{'center', 'left', right'},默认值为'center',即相对于(x,y)的水平方向对齐方式。
  • verticalalignment, va:类型为字符串,取值范围{'top', 'center', 'bottom', 'baseline'},默认值为'top',即相对于(x,y)的垂直方向对齐方式。
  • fontsize, size:取值范围为浮点数或{'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'},默认值为rcparams["figure.titlesize"] ('large'),文本的字体大小。
  • fontweight, weight:取值范围详见文档,字即文本的字重。
  • **kwargstext 对象关键字属性,用于控制文本的外观属性,如字体、文本颜色等。

返回值为text对象.

suptitle()相关rcparams为:

?
1
2
#figure.titlesize:  large   # size of the figure title (``figure.suptitle()``)
#figure.titleweight: normal  # weight of the figure title

案例

添加图像标题,并设置坐标、字体大小、文本颜色等属性.

?
1
2
3
4
5
6
7
import matplotlib.pyplot as plt
 
plt.plot([ 1 , 1 ])
plt.title( "title" )
plt.suptitle( "suptitle" , x = 0.1 , y = 0.98 , fontsize = 16 , color = 'red' )
 
plt.show()

matplotlib之pyplot模块之标题(title()和suptitle())

到此这篇关于matplotlib之pyplot模块之标题(title()和suptitle())的文章就介绍到这了,更多相关matplotlib title()和suptitle()内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。

原文链接:https://blog.csdn.net/mighty13/article/details/113819660 。

最后此篇关于matplotlib之pyplot模块之标题(title()和suptitle())的文章就讲到这里了,如果你想了解更多关于matplotlib之pyplot模块之标题(title()和suptitle())的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com