autodo-app / autodo

A flexible, intuitive ToDo list app for keeping track of your cars' maintenance needs.
https://autodo-app.herokuapp.com
Other
50 stars 4 forks source link

Spline Interpolation between data points in Stats #122

Closed baylessj closed 3 years ago

baylessj commented 4 years ago

Pulled from a comment on #41:

Currently I'm using an EMA filter to make a trend line for the data, but the jagged edges between the data points don't look great.

I'd like to set up spline interpolation between the data points, but finding a good way to do that without requiring a lot of data points is tricky. Found the following resources though:

From the wiki page and a couple posts on SO it seems like Catmull Rom splines are the way to go

baylessj commented 4 years ago

This could probably be lumped together with #265, the graphs may look smoother with that package anyways.