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


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


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

bokeh.plotting.figure.bezier()函數

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

用法: bezier(x0, y0, x1, y1, cx0, cy0, cx1, cy1, *, line_alpha=1.0, line_cap=’butt’, line_color=’black’, line_dash=[], line_dash_offset=0, line_join=’bevel’, line_width=1, name=None, tags=[], **kwargs)

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

  • x0:該參數是起點的x-coordinates。
  • y0:該參數是起點的y-coordinates。
  • x1:該參數是終點的x-coordinates。
  • y1:該參數是終點的y-coordinates。
  • cx0:此參數是第一個控製點的x-coordinates。
  • cy0:此參數是第一個控製點的y-coordinates。
  • cx1:此參數是第二個控製點的x-coordinates。
  • cy1:此參數是第二個控製點的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.bezier()函數:
範例1:

# Implementation of bokeh function 
   
import numpy as np  
from bokeh.plotting import figure, output_file, show 
  
plot = figure(plot_width = 300, plot_height = 300) 
  
plot.bezier(x0 =[1, 2, 3], y0 =[3, 2, 1],  
            x1 =[1.4, 2.3, 3.5], y1 =[3.4, 2.3, 1.5],  
            cx0 =[1.4, 2.3, 3.5], cy0 =[3.4, 2.3, 1.5], 
            cx1 =[.4, 1.3, 2.5], cy1 =[2.4, 1.3, .5], 
            color ="green", alpha = 0.6, line_width = 3) 
   
show(plot)

輸出:

範例2:

# Implementation of bokeh function 
   
import numpy as np  
from bokeh.plotting import figure, output_file, show 
   
N = 9
x = np.linspace(-2, 2, N) 
y = x**2
  
xp02 = x + 0.4
xp01 = x + 0.1
xm01 = x-0.1
yp01 = y + 0.2
ym01 = y-0.2
  
plot = figure(plot_width = 300, plot_height = 300) 
  
plot.bezier(x0 = x, y0 = y, 
            x1 = xp02, y1 = y, 
            cx0 = xp01, cy0 = yp01, 
            cx1 = xm01, cy1 = ym01,  
            color ="green", alpha = 0.6, 
            line_width = 3) 
   
show(plot)

輸出:




相關用法


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