If I understand correctly, you are busy further developing the connection to deck_gl so the API and functionality may be in flux. I noticed that with this code:
you can use a “getRadius” field to individually set the radius of each circle in the plot. So here you would set “getRadius”: “my_column” where “my_column” is the name of the column containing the radius data.
Thanks @Jonathan_Rhone. By selecting features, I mean allowing users to select one or more dots in a scatterplot (for example) to change their display color, to calculate an average value, or to exclude them from further calculations.
Just wanted to drop in and mention that we’re soon going to deprecate st.deck_gl_chart in favor of st.pydeck_chart.
st.deck_gl_chart uses an API we threw together in a rush in order to support DeckGL (which is a JavaScript library) in Python, and frankly that API is just not that great.
But in the time since we implemented that feature a new Python package called PyDeck has popped up which does a much better job at creating DeckGL specs from Python! So we’ll be migrating to that ASAP.
I expect this to land in Streamlit in a week or two.