要將NumPy與Bokeh集成使用,可以使用NumPy數組作為Bokeh圖表的數據源。可以通過以下步驟實現這一集成:
import numpy as np
from bokeh.plotting import figure, show
x = np.linspace(0, 10, 100)
y = np.sin(x)
p = figure(title="Sin Wave")
p.line(x, y, legend_label='sin(x)', line_width=2)
show(p)
這樣就可以使用NumPy數組數據源創建Bokeh圖表。通過集成NumPy和Bokeh,可以方便地使用NumPy提供的豐富功能和Bokeh提供的數據可視化功能。