如何通过单击图表中的一个点来执行 python/streamlit 中的函数

How to perform a function in python/streamlit by clicking on a point in a graph

我想在点击图中的一个点时执行一个功能。

目前我正在使用 Python、Streamlit 和 Vega-Lite 来制作图表。我想创建一些东西,通过执行 python 函数为我提供有关单击点的更多信息。

所以我想执行 search() 函数,但我不想自己给出参数,而是想给出点击点的 a、b 和 c 值。

df = pd.DataFrame(np.random.randn(200, 3),columns=['a', 'b', 'c'])

df = df.append({'a':1, 'b':1, 'c':1}, ignore_index=True)

st.vega_lite_chart(df, {
 'mark': {'type': 'circle', 'tooltip': True},
 'encoding': {
     'x': {'field': 'a', 'type': 'quantitative'},
     'y': {'field': 'b', 'type': 'quantitative'},
     'size': {'field': 'c', 'type': 'quantitative'},
     'color': {'field': 'c', 'type': 'quantitative'},
 },
})

def search(arg1, arg2, arg3):
   return df.loc[(df['a']==1) & (df['b']==1) & (df['c']==1)]

searched = search(1,1,1)
searched

我知道可以使用 vega-lite 单击图表,如下例 https://vega.github.io/vega-lite/examples/point_href.html。但是我不想去Google,而是想执行一个python函数。

是否有某种类型的图表可用于此类问题?

尚不支持与图形的交互。

有关详细信息,请参阅此 link