Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。
matplotlib.axes.Axes.stem()函数
matplotlib库的axiss模块中的Axes.stem()函数用于创建茎图。
用法: Axes.stem(self, *args, linefmt=None, markerfmt=None, basefmt=None, bottom=0, label=None, use_line_collection=False, data=None)
参数:此方法接受以下描述的参数:
- x:此参数是茎的x坐标的序列。
- y:此参数是杆头的y坐标的序列。
- linefmt:此参数是定义垂直线属性的字符串。
- markerfmt:此参数是定义茎头标记的属性的字符串。
- basefmt:此参数是定义基线属性的字符串。
- bottom:此参数是基线的y-position。
- label:此参数是用于图例中茎的标签。
返回值:这将返回以下内容:
- StemContainer:这将返回一个可以像元组一样对待的容器(标记线,干线,基线)。
以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.broken_barh()函数:
示例1:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.stem([0.3, 1.5, 2.7],
[1, 3.6, 2.7],
label ="stem test")
ax.legend()
ax.set_title('matplotlib.axes.Axes.stem Example')
plt.show()
输出:
示例2:
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0.1, 2 * np.pi, 41)
y = np.exp(np.sin(x))
fig, ax = plt.subplots()
ax.stem(x, y, linefmt ='grey',
markerfmt ='D',
bottom = 1.1,
use_line_collection = True)
ax.set_title('matplotlib.axes.Axes.stem Example')
plt.show()
相关用法
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axes.Axes.stem() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。