I'm currently working on some graph theory, and I'm checking the robustness of graphs, by removing random vertices from a graph and then check how many vertices are outside the giant component. Then I'll do that for a lot of vertices, and plot them using ListPlot.
This takes along time to calculate, is there a way I can visualise it, that it plots something everytime a value is calculated.
thisFunctionTakesVeryLongAndReturnsAList := .... ListPlot[thisFunctionTakesVeryLongAndReturnsAList [graph]]
thisFunctionTakesVeryLongAndReturnsAList calculates a value that can be plotted all the time