I am working on a problem of ranking of items involving two variables: popularity and location.
The goal I have is to come up with a way of deciding the best trade-off between popularity and distance away for items in my set. That is, from a set of items with popularity and a geolocation, as well as my location (thus, the distance), I want to find the most important one.
The following solution was mentioned in a previous question, which did not get much attention:
Given a place p you can calculate the importance of the place I(p) by using the popularity P(p) and the distance D(p). You should decide or find the best values for the weights a and b.
I(p) = a * P(p) - b * D(p)
Now, how do I best determine the weights of the values a and b?
I have a set of "solutions", I can use. Each solution includes a subset of items with their popularity and distance away, as well as which ONE item among the set was deemed most relevant/important.