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

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

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

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

bokeh.plotting.figure.bezier()函数

bokeh 库的绘图模块中的bezier()函数用于配置和添加 Bezier 字形到这个图中。

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

输出: