Viewing a single comment thread. View all comments

flabberghaster OP wrote

Just a simple trend line, I could just do it with google sheets probably pretty easily.

2

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

2

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.

2

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.

Graph

Still I'd like it to look nicer.

2

victoria wrote (edited )

I did this with last.fm api data a few years ago (here) and it looks about the same tbh

It’s not great, but i coildny really think of a better way of visualizing it and it was just an afternoons worth of work, so i think im ok with it

3