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

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

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

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

bokeh.plotting.figure.annular_wedge()函数

bokeh 库绘图模块中的ring_wedge()函数用于将 AnnularWedge 字形添加到图形中。

下面的示例说明了 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)

输出: