enter image description here

The above image represents an article's page views over time. I'm looking for a decent, not to complex either physics or statistical calculation that would be able to give me (based on the history of the page views) what the current trending of the page views is for the past n days (which is represented by the blue box).

So basically, in the past 5 days is this link trending unusually higher than it usually does and if so by what degree/magnitude?

Ideally the accepted answer would provide an algorithm class that applies to this problem as well as some example of that using the data provided from this chart above.

thanks!

link|improve this question

62% accept rate
1  
The question was asking for an algorithm. Don't over moderate, bud – James Jun 5 '11 at 2:17
feedback

closed as off topic by Kirk Woll, SoapBox, Bill the Lizard Jun 5 '11 at 1:39

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

One approach could be to perform a least squares fit of the points within the blue box. Trends could then measured by the difference between the points and the least squares fit approximation value.

link|improve this answer
feedback

It sounds like you want to compare a short term (5-day) moving average to a longer-term moving average (e.g., something like 90 days).

As a refinement, you might want to do a least-squares linear regression over the longer term, and then compare the shorter term average to the projection you get from that.

link|improve this answer
do you have links or examples? thanks – James Jun 4 '11 at 23:15
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.