I am a mathematics noob with a data science problem, and I have been having trouble understanding enough about curve fitting to even be able to search for a solution.
I am trying to find a curve that best fits a data set comprising coordinates with overlapping X values. I have about 5 million data points of the following type:
{0, 1}, {0, 2}, {1, 4}, {2, 8}, ...}
The first value of these data points represents a timestamp in milliseconds, and can recur in the data set many times. How would I go about finding a curve for this type of data set?