I am gathering data from a website. I estimate to get 10.000 datapoints (time – value) multiplied by seven – over time. That is way to much. Both for storing and plotting it in a real time alike graph (through jQuery flot).
I’m looking for a text dealing with this sort of problems. To be more precise: algorithms, statistical math for finding least significant points (if that would be a good idea), general ideas on dealing with this sort of problem. If a text were available on the net that be great. Reference to a book would do also.
I am gathering data from a website. I estimate to get 10.000 datapoints (time
Share
Reading the apha beta pruning article on Wikipedia I came up with this idea:
The least significant point is the point where the smallest change took place. In the data array that would be the difference between
arr[i-1]andarr[i+1]. Then it’s easy to findi:I haven’t tested it yet, but it looks like a promising idea.