I am wondering how to do normalization of numbers for a ranking algorithm
let's say I want to rank a link based on importance, and I have two columns to work with
so the table will look like
url | comments | views
Now I want to rate comments higher than opinions, so I would first think of making comments * 3 or something to their weight, however, if there is a large review number, for example, 40,000 and only 4 comments, then the weight of the comments drops out.
So, I think I need to normalize these scores to a more equal playing field before I can weigh them. Any ideas or pointers on how this is usually done?
thank
source
share