當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python bokeh.plotting.figure.step()用法及代碼示例


Bokeh是Python中的數據可視化庫,可提供高性能的交互式圖表和繪圖,並且可以通過筆記本,html和服務器等各種介質獲取輸出。 Figure類創建一個新的Figure進行繪製。它是Plot的子類,可通過默認軸,網格,工具等簡化繪圖創建。

bokeh.plotting.figure.step()函數

散景庫的繪圖模塊中的step()函數用於配置步字形並將其添加到該圖形中。

用法: step(x, y, *, line_alpha=1.0, line_cap=’butt’, line_color=’black’, line_dash=[], line_dash_offset=0, line_join=’bevel’, line_width=1, mode=’before’, name=None, tags=[], **kwargs)

參數:此方法接受下麵描述的以下參數:

  • x:該參數是步驟的x-coordinates。
  • y:該參數是步驟的y-coordinates。
  • line_alpha:此參數是步驟的線alpha值,默認值為1.0。
  • line_cap:此參數是默認值為對接的步驟的線寬值。
  • line_color:此參數是步驟的線條顏色值,默認值為黑色。
  • line_dash:此參數是步驟的線破折號,默認值為[]。
  • line_dash_offset:此參數是步驟的線破折號偏移值,默認值為0。
  • line_join:此參數是具有默認斜角值的步驟的線連接值。
  • line_width:此參數是步驟的線寬值,默認值為1。
  • mode:此參數可以是以下三個值之一:[“before”,“after”,“center”]。
  • name:此參數是此模型的用戶提供的名稱。
  • tags:此參數是該模型的用戶提供的值。

Other Parameters:這些參數是** kwargs,如下所述:



  • alpha:此參數用於一次設置所有alpha關鍵字參數。
  • color:此參數用於一次設置所有顏色關鍵字參數。
  • legend_field:此參數是數據源中應使用的列或分組的名稱。
  • legend_group:此參數是數據源中應使用的列或分組的名稱。
  • legend_label:此參數是圖例條目,其標記為此處提供的確切文本。
  • muted:此參數包含布爾值。
  • name:此參數是用戶提供的可選名稱,以附加到渲染器。
  • source:此參數是用戶提供的數據源。
  • view:此參數是用於過濾數據源的視圖。
  • visible:此參數包含布爾值。
  • x_range_name:此參數是用於映射x-coordinates的額外範圍的名稱。
  • y_range_name:此參數是用於映射y-coordinates的額外範圍的名稱。
  • level:此參數指定此字形的渲染級別順序。

返回:此方法返回GlyphRenderer值。

以下示例說明了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)

輸出:




相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 bokeh.plotting.figure.step() function in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。