Matplotlib is hiring a Research Software Engineering Fellow! See discourse for details. Apply by January 3, 2020

Version 3.1.1
matplotlib
Fork me on GitHub

目录

Related Topics

容器

matplotlib.container

class matplotlib.container.BarContainer(patches, errorbar=None, **kwargs)[源代码]

基类:matplotlib.container.Container

用于条形图艺术家的容器(例如由 Axes.bar

容器可以作为 补片 他们自己。此外,还可以通过属性访问这些参数和其他参数。

属性:
补片 : list of Rectangle : 矩形列表

酒吧里的艺术家们。

错误栏 : None or ErrorbarContainer : 无或错误栏容器

错误条艺术家的容器(如果存在错误条)。 None 否则。

class matplotlib.container.Container(kl, label=None)[源代码]

基类:tuple

容器的基类。

容器是收集语义相关艺术家(如条形图的条形图)的类。

add_callback(func)[源代码]

添加一个回调函数,每当 Artist 的属性更改。

返回一个 id 这对于删除回调非常有用 remove_callback() 后来。

get_children()[源代码]
get_label()[源代码]

在图例中获取用于此艺术家的标签。

pchanged()[源代码]

当属性更改时激发事件,调用所有已注册的回调。

remove()[源代码]
remove_callback(oid)[源代码]

基于其移除回调 id .

参见

add_callback()
用于添加回调
set_label(s)[源代码]

将标签设置为 s 用于自动图例。

参数:
s : 字符串或任何可通过“%s”转换打印的内容。
set_remove_method(f)[源代码]

3.0 版后已移除: set_remove_方法函数在matplotlib 3.0中已弃用,将在3.2中删除。

class matplotlib.container.ErrorbarContainer(lines, has_xerr=False, has_yerr=False, **kwargs)[源代码]

基类:matplotlib.container.Container

错误条艺术家的容器(例如由 Axes.errorbar

容器可以被视为 线 元组本身。此外,还可以通过属性访问这些参数和其他参数。

属性:
线 : 元组

Tuple (data_line, caplines, barlinecols) .

  • data_line : Line2D X、Y绘图标记和/或线条的实例。
  • 凯普林 : tuple of Line2D 误差线帽的实例。
  • 巴林科尔 : list of LineCollection 水平和垂直误差范围。
has_xerr, has_yerr : 布尔

True 如果误差条有X/Y误差。

class matplotlib.container.StemContainer(markerline_stemlines_baseline, **kwargs)[源代码]

基类:matplotlib.container.Container

容器中创建的艺术家 Axes.stem() 情节。

容器可以被视为名称双重 (markerline, stemlines, baseline) .

属性:
标记线 : Line2D : 线2D

在茎头做记号的艺术家。

茎线 : list of Line2D : 线2D列表

艺术家们的垂直线条为所有的茎。

基线 : Line2D : 线2D

水平基线的艺术家。