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


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


Bokeh是Python中的數據可視化庫,它提供high-performance交互式圖表和繪圖,並且可以通過筆記本,HTML和服務器等各種介質獲得輸出。 Figure類創建用於繪製的新Figure。它是Plot的子類,可通過默認軸,網格,工具等簡化繪圖創建。

bokeh.plotting.figure.dash()函數

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

用法: dash(x, y, size=4, angle=0.0, *, angle_units=’rad’, fill_alpha=1.0, fill_color=’gray’, 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)
參數: This method accept the following parameters that are described below: 
 
  • x:此參數是標記中心的x-coordinates。
  • y:此參數是標記中心的y-coordinates。
  • 尺寸:此參數是屏幕空間單位中標記的大小(直徑)值。
  • 角度:此參數是旋轉標記的角度。
  • fill_color:此參數是標記的填充顏色值。
  • line_color:此參數是標記的線條顏色值,默認值為黑色。
  • line_width:此參數是標記的線寬值,默認值為1。
  • 名稱:此參數是此模型的用戶提供的名稱。
  • 標簽:此參數是該模型的用戶提供的值。

返回:此方法返回GlyphRenderer值。

以下示例說明了bokeh.plotting中的bokeh.plotting.figure.dash()函數:
範例1:



Python3

# 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.dash(x = [1, 2, 3], y = [3, 7, 5],   
            size = 20, color ="green", alpha = 0.9)  
     
show(plot) 

輸出:

範例2:

Python3

# Implementation of bokeh function  
     
import numpy as np   
from bokeh.plotting import figure, output_file, show  
     
x = [1, 2, 3, 4, 5]  
y = [6, 7, 8, 7, 3]  
    
output_file("geeksforgeeks.html")  
    
p = figure(plot_width = 300, plot_height = 300)  
    
# add both a line and circles on the   
# same plot  
p.line(x, y, line_width = 2)  
p.dash(x, y, fill_color ="red",   
         line_color ="green", size = 25)  
    
show(p)

輸出:




相關用法


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