使用数据框在Bokeh中构建选择窗口小部件

时间:2017-06-22 20:21:13

标签: python pandas data-visualization bokeh

我有一个数据框df,列为#34; location" (很少有没有价值的细胞) -

location
US
India

US
Japan
US

India

我想使用散景创建一个单一选择小部件,其中包含位置列中包含的值。我在下面写代码 -

location = Select(title="Location", value="All",
           options=df["location"].unique())

这给了我一个错误 -

ValueError: expected an element of List(Either(String, Tuple(String, 
String))), got array(['US', 'India', 'EMEA', nan, 'Japan'], 
dtype=object)

1 个答案:

答案 0 :(得分:0)

您需要将您的熊猫系列转换为列表。

options=df["location"].unique().tolist()