matplotlib.axes.axes.stem - 创建茎叶图

matplotlib.axes.axes.stem

matplotlib.axes.axes.stem()函数,使用matplotlib库的Axes模块中的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轴位置。
  • label:该参数为图例中茎的标签。

返回如下内容:

  • StemContainer:返回的容器可以像元组一样处理(markerline, stemlines, baseline).

下面的例子演示了matplotlib.axes.axes.broken_barh()函数在matplotlib.axes中的作用:

示例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()

输出:

matplotlib.axes.axes.stem

示例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()

matplotlib.axes.axes.stem

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程