SO how-to-update-redraw-a-plotly-express-figure-with-new-data suggested in 2020
f = go.FigureWidget()
f.show()
for y in range( N ): # 1k, 10k ?
f.add_scatter( y=[y] )
# f.show() # renderer=
but FigureWidget now needs anywidget
, which I gather is for Jupyter / Jupterlab notebooks, not standalone python β chrome, is that right ?
So, how to do this without FigureWidget ?
(5 fps and N=1000 points would be ok for me β simple code is way more important than speed.)
See also
Plotly figurewidget overview in Python β update
FigureWidget fails with anywidget in colab #5027
mpl animation strip_chart
(Is βcreate a new topicβ your parlance for βtitle of a postβ ?)
~