要使用Bokeh的ColumnDataSource從CSV或Excel文件中讀取數(shù)據(jù),可以按照以下步驟操作:
from bokeh.io import output_file, show
from bokeh.plotting import figure
from bokeh.models import ColumnDataSource
import pandas as pd
df = pd.read_csv('data.csv') # 從CSV文件中讀取數(shù)據(jù)
# df = pd.read_excel('data.xlsx') # 從Excel文件中讀取數(shù)據(jù)
source = ColumnDataSource(df)
p = figure(title='Data from CSV or Excel', x_axis_label='X', y_axis_label='Y')
p.circle('x', 'y', source=source, size=8, color='blue')
output_file('data_plot.html')
show(p)
這樣就可以使用Bokeh的ColumnDataSource實(shí)現(xiàn)從CSV或Excel文件讀取數(shù)據(jù)并繪制圖表了。