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


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


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

bokeh.plotting.figure.annular_wedge()函數

散景庫的繪圖模塊中的annular_wedge()函數用於將AnnularWedge字形添加到圖形。

用法: annular_wedge(x, y, inner_radius, outer_radius, start_angle, end_angle, direction=’anticlock’, *, end_angle_units=’rad’, fill_alpha=1.0, fill_color=’gray’, inner_radius_units=’data’, line_alpha=1.0, line_cap=’butt’, line_color=’black’, line_dash=[], line_dash_offset=0, line_join=’bevel’, line_width=1, name=None, outer_radius_units=’data’, start_angle_units=’rad’, tags=[], **kwargs)

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

  • x:該參數是環形楔形件中心的x-coordinates。
  • y:該參數是環形楔形件中心的y-coordinates。
  • inner_radius:此參數是環形楔的內半徑。
  • outer_radius:此參數是環形楔的外半徑。
  • start_angle:該參數是啟動環形楔塊的角度。
  • end_angle:此參數是結束環形楔的角度。
  • direction:此參數是在起始角度和終止角度之間的行程方向。
  • fill_alpha:此參數是環形楔的填充Alpha值。
  • fill_color:此參數是環形楔形的填充顏色值。
  • line_alpha:此參數是默認值1.0的環形楔的線alpha值。
  • 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.annular_wedge()函數:
範例1:

# Implementation of bokeh function 
  
import numpy as np  
from bokeh.plotting import figure, output_file, show 
  
x = [2] 
y = [2] 
r = .6
  
plot = figure(width = 300, height = 300) 
plot.annular_wedge(x = x, y = y, inner_radius =.2, 
                   outer_radius = r, start_angle = 0,  
                   end_angle = 6.5, line_color = "red", 
                   fill_color ="red") 
  
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
r = x / 12.0 + 0.4
   
plot = figure(width = 300, height = 300) 
plot.annular_wedge(x = x, y = y, inner_radius =.2,  
                   outer_radius = r, start_angle = 0.6, 
                   end_angle = 4.1, fill_color ="green") 
   
show(plot)

輸出:




相關用法


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