Building a feature of top of existing site w/ articles and videos (posts) that allows people to see what is popular on the site. I have the following fields for each post:

  • Number of seconds since post was published
  • Number of comments made on post
  • Number of "likes" on posts

I want to bake a simple algorithm to determine what is popular but need to factor in decay (from time being elapsed).

link|improve this question

1  
What have you tried? Did you encounter a particular area of difficulty? – George Cummins Nov 1 '11 at 15:43
just playing with my own. like variations of: (n_likes * 2) + (n_comments * 4) / (n_seconds / (60 * 60 * 24)) I think I am missing some of the magic of established trending algorithms. – phirschybar Nov 1 '11 at 15:54
There is no magic. You just need to clearly define your specification. When you have clearly identified the bounds and effect of decay, the code will be easy to write. – George Cummins Nov 1 '11 at 15:57
a Google search for [popularity algorithm with decay] brings up lots of good results. Also see the related questions about trending topics algorithms such as stackoverflow.com/questions/143781/… – Jim Mischel Nov 1 '11 at 16:16
Usually things like e^(- a t + b * comments + c * likes) work pretty well. You should choose {a,b,c} to fit your preferences – belisarius Nov 2 '11 at 5:12
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.