Is there a way to plot in an already open window in pandas. Suppose i have a dataframe of 10,000 items and only one column.
what I want to do is to keep plotting only 100 of those points at a time in that open plot window, like a streaming plot maybe.
So the outcome would be a open window that displays line plot of first 100 points then the next 100 points, i.e. 101 to 200 and so on....
i tried looking on the SO but could only find examples like : Real time matplotlib plot is not working while still in a loop I cannot make it play nice with df.plot() method....