hex_tile#
一个使用随机选取点的手动六边形箱体图。此图表显示了来自正态分布的 50,000 个点,使用 hexbin
实用程序函数将其分箱到六边形平铺中。这些平铺根据其箱体计数以线性方式进行颜色映射。
详细信息
- Bokeh API:
figure.hex_tile
,bokeh.transform.linear_cmap
,bokeh.util.hex.hexbin
- 更多信息:
- 关键词:
hex, hex_tile, colormap
import numpy as np
from bokeh.plotting import figure, show
from bokeh.transform import linear_cmap
from bokeh.util.hex import hexbin
n = 50000
x = np.random.standard_normal(n)
y = np.random.standard_normal(n)
bins = hexbin(x, y, 0.1)
p = figure(title="Manual hex bin for 50000 points", tools="wheel_zoom,pan,reset",
match_aspect=True, background_fill_color='#440154')
p.grid.visible = False
p.hex_tile(q="q", r="r", size=0.1, line_color=None, source=bins,
fill_color=linear_cmap('counts', 'Viridis256', 0, max(bins.counts)))
show(p)