You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've used the ammonite plotly implementation and for each plot it creates a new browser screen so it isn't possible to show the progress of something or visualize a stream.
It would be nice if you had a plot output which you could update with a new plot.
I'm not sure how it could be implemented and i agree that it goes against the immutability idea. But it would make it better to have some interactive visualization of the data.
The text was updated successfully, but these errors were encountered:
you can add openInBrowser = false, that will update the file without open a new browser.
Then you manually open the file with a browser, and install pluging in browser to auto update the page.
However, I don't really like this solution.
For instance I have a output file with many data, and each second I rewrite the entire file for just update one data to my disk. I have a SSD disk, it isn't good for its lifetime
I prefer a solution like append the new data to file, or I update the html file in the RAM, the browser directly read the html file in the RAM. But I don't know how do it.
I've used the ammonite plotly implementation and for each plot it creates a new browser screen so it isn't possible to show the progress of something or visualize a stream.
It would be nice if you had a plot output which you could update with a new plot.
so
this could become:
I'm not sure how it could be implemented and i agree that it goes against the immutability idea. But it would make it better to have some interactive visualization of the data.
The text was updated successfully, but these errors were encountered: