📌  相关文章
📜  Python中的 bokeh.plotting.figure.step()函数

📅  最后修改于: 2022-05-13 01:55:15.216000             🧑  作者: Mango

Python中的 bokeh.plotting.figure.step()函数

Bokeh是Python中的数据可视化库,提供高性能的交互式图表和绘图,输出可以在笔记本、html 和服务器等各种媒体中获得。 Figure 类创建一个用于绘图的新 Figure。它是 Plot 的子类,使用默认轴、网格、工具等简化绘图创建。

bokeh.plotting.figure.step()函数

bokeh 库的绘图模块中的step()函数用于配置和添加 Step 字形到这个图中。

以下示例说明了 bokeh.plotting 中的 bokeh.plotting.figure.step()函数:
示例 1:

# Implementation of bokeh function
  
import numpy as np 
from bokeh.plotting import figure, output_file, show
  
x = np.arange(16) 
y = np.sin(x / 3)
  
plot = figure(plot_width = 300, plot_height = 300)
  
plot.step(x = x, y = y + 2,
          color ='green')
plot.line(x, y + 2, color ='black',
          line_alpha = 0.3,
          line_dash = "dashed")
  
show(plot)

输出:

示例 2:

# Implementation of bokeh function
   
import numpy as np 
from bokeh.plotting import figure, output_file, show
   
x = np.arange(16) 
y = np.sin(x / 3)
   
plot = figure(plot_width=300, 
              plot_height=300)
   
plot.step(x=x, y=y+2, color ='blue', 
          legend_label = 'pre')
plot.line(x, y+2,color ='black', 
          line_alpha = 0.3 ,
          line_dash = "dashed")
   
plot.step(x=x, y=y+1, color ='orange', 
          legend_label = 'mid')
plot.line(x, y+1, color ='black', 
          line_alpha = 0.3 ,
          line_dash = "dashed")
   
plot.step(x=x, y=y, color ='green', 
          legend_label = 'post')
plot.line(x, y, color ='black', 
          line_alpha = 0.3 ,
          line_dash = "dashed")
   
show(plot)

输出: