test2023h5 commited on
Commit
5e03a96
·
verified ·
1 Parent(s): 67737a5

Upload 02data_feature.py

Browse files
Files changed (1) hide show
  1. pages/02data_feature.py +2 -2
pages/02data_feature.py CHANGED
@@ -34,7 +34,7 @@ from bokeh.palettes import Category10
34
  data = pd.read_csv("./data/iris.csv")
35
 
36
  # 创建 Bokeh 图表
37
- p = figure(title="Iris 数据集散点图", x_axis_label='花萼长度 (cm)', y_axis_label='花萼宽度 (cm)',
38
  tools="pan,wheel_zoom,box_zoom,reset,hover,save", width=800, height=600)
39
 
40
  # 创建数据源
@@ -42,7 +42,7 @@ source = ColumnDataSource(data)
42
 
43
  # 为 species 列设置颜色映射
44
  species_list = data['species'].unique().tolist()
45
- p.circle(x='sepal_length', y='sepal_width', source=source, size=10,
46
  color=factor_cmap('species', palette=Category10[3], factors=species_list), legend_field='species')
47
 
48
  # 配置图例
 
34
  data = pd.read_csv("./data/iris.csv")
35
 
36
  # 创建 Bokeh 图表
37
+ p = figure(title="Iris 数据集散点图", x_axis_label='花瓣长度 (cm)', y_axis_label='花瓣宽度 (cm)',
38
  tools="pan,wheel_zoom,box_zoom,reset,hover,save", width=800, height=600)
39
 
40
  # 创建数据源
 
42
 
43
  # 为 species 列设置颜色映射
44
  species_list = data['species'].unique().tolist()
45
+ p.circle(x='petal_length', y='petal_width', source=source, size=10,
46
  color=factor_cmap('species', palette=Category10[3], factors=species_list), legend_field='species')
47
 
48
  # 配置图例