Bokeh 简明教程

Bokeh - Area Plots

面积图是两个共享公共索引的序列之间的填充区域。Bokeh 的图形类有以下两种方法:

varea()

varea() 方法的输出是一个垂直有向区域,它有一个 x 坐标数组和两个 y 坐标数组 (y1 和 y2),它们将在之间填写。

1

x

区域中各点的 x 坐标。

2

y1

区域一侧中各点的 y 坐标。

3

y2

区域另一侧中各点的 y 坐标。

Example

from bokeh.plotting import figure, output_file, show
fig = figure()
x = [1, 2, 3, 4, 5]
y1 = [2, 6, 4, 3, 5]
y2 = [1, 4, 2, 2, 3]
fig.varea(x = x,y1 = y1,y2 = y2)
output_file('area.html')
show(fig)

Output

varea

harea()

另一方面,harea() 方法需要 x1、x2 和 y 参数。

1

x1

一个区域其中一侧的点的 x 坐标。

2

x2

另一个区域中点的 x 坐标。

3

y

该区域中的点的 y 坐标。

Example

from bokeh.plotting import figure, output_file, show
fig = figure()
y = [1, 2, 3, 4, 5]
x1 = [2, 6, 4, 3, 5]
x2 = [1, 4, 2, 2, 3]
fig.harea(x1 = x1,x2 = x2,y = y)
output_file('area.html')
show(fig)

Output

harea