flabberghaster OP wrote
Reply to comment by twovests in I have a fun idea that I don't know how to execute. by flabberghaster
Just a simple trend line, I could just do it with google sheets probably pretty easily.
twovests wrote
If you like a scripty solution, Python's matplotlib
is pretty good, but pandas
(dataframe manipulation library) also has a quick dataframe.plot(...)
method that I lile.
If I had a better idea of what your data would look like (pairs of date string x file size?) I could give you a quick 10-liner that would do it too
flabberghaster OP wrote
Yeah my first idea is literally just find all the file sizes and time stamps, sort by time stamp, then have a running total of the size. Then make a scatter plot with the X axis as the time and the Y axis as the total size.
flabberghaster OP wrote
This has a few errors in it (i called it % full when it's actually not scaled to 100, for starters) but it gives me an idea of what rate it's growing at so that's something.
Still I'd like it to look nicer.
Viewing a single comment thread. View all comments