要使用Seaborn和Bokeh庫創建交互式圖表,可以按照以下步驟進行:
import seaborn as sns
from bokeh.plotting import figure, show
from bokeh.models import ColumnDataSource
from bokeh.io import output_notebook
data = sns.load_dataset('iris')
output_notebook()
p = figure(title="Iris Dataset", plot_width=800, plot_height=400)
source = ColumnDataSource(data)
p.circle(x='sepal_length', y='sepal_width', source=source, size=10, color='species')
show(p)
這樣就可以在Jupyter Notebook中顯示一個交互式的散點圖,其中不同品種的鳶尾花用不同的顏色表示。您還可以根據自己的需求調整圖表的樣式和交互性。