Basically I have a set of data like
var data = [
{idx: 0, value: 10},
{idx: 20, value: 15},
{idx: 45, value: 24},
{idx: 100, value: 55},
];
I'm looking for a way to interpolate/estimate what the value of an unmapped point (such as an idx of 32) would be. I'm a little out of my element here, and would love to learn more about how to tackle this problem, so some direction would be greatly appreciated!