(I'm attaching both Solr and SQL as tags because I don't know what to use in such situation. Maybe even something else)

Example:

Web application that must sort tasks based on Time and Price. The user has a slider that determines what's more important (Time or Price).

It has to do a weighted sorting where the score of the result depends on the Price and the Time but it must be possible to change the coefficients when the user slides towards Time or respectively Price.

Example 2:

User is trying to find the right socks. Wondering between how green and how long they should be. Again there's a slider between these two properties. If at the slider's 50% the user cares about how green they are as much as how long they are. If the slider's closer to the green end the user is more interested in how green the socks are but do want to be long as well.

I don't know what software to use or how to achieve this.

link|improve this question

45% accept rate
Are you able to define what you want the output to look like when the slider is at 50%? And if you use SQL, what flavour would you have access to? – Dems Oct 5 '11 at 22:23
@Dems, I guess when the slider's on 50% the Price and Time will have equal importance. SQL favour - any, I will use whatever suits best this case. – antitoxic Oct 5 '11 at 22:30
When you say "equal importance" though, what does that mean? In this case the phrase everything is relative is crucially important. I've given an example answer, but it has it's own peculiarities. – Dems Oct 5 '11 at 22:32
May be the example with the price is not very good. So slider's at 50%. Let's say we are sorting socks. How green are they and how long. When sorting by how green they are a sock is first. When sorting by price only the same sock is last. The average between these two? – antitoxic Oct 5 '11 at 23:01
Thanks for attempting to give another example, but it still doesn't actually say HOW you want to determine the order when the slider is between 0% and 100%. I understand you want to "weight each property by the slider's value", but you don't describe HOW. Have a look at my answer and let me know how it performs for you. Is it doing what you expect? If not, what would you rather it do? As it stands, the question is vague enought that I could propose a dozen algorithms and have no idea if any are remotely what you want :) – Dems Oct 5 '11 at 23:17
feedback

2 Answers

up vote 0 down vote accepted

MS SQL SERVER answer...

DECLARE
  @min_time    DATETIME,
  @max_time    DATETIME,
  @min_price   MONEY,
  @max_price   MONEY
SELECT
  @min_time    = MIN(timestamp),
  @max_time    = MAX(timestamp),
  @min_price   = MIN(price),
  @max_price   = MAX(price)
FROM
  yourTable

SELECT
  *
FROM
  yourTable
ORDER BY
  (CAST(DATEDIFF(second, @min_time, timestamp) AS FLOAT) / CAST(DATEDIFF(second, @min_time, @max_time) AS FLOAT)) * @slider
  +
  (CAST(price - @min_price AS FLOAT) / CAST(@max_price - @min_price AS FLOAT)) * (1 - @slider)

-- Where te slider value is anything between 0 and 1

To make your sentiment work, I do the same calculation to both Time and Price - I convert them to a value from 0 to 1 (which I'll call it's positional weight).
- 0.0 = Equal to the minimum value for that field
- 0.5 = Exaclty half way between the min and max of that field
- 1.0 = Equal to the maximum value for that field

I then multiply the positional weight by the slider's value (or 1-value), and add the two results together.

When the slider is at 0 or 1, it's simple; one positional weight is multipled by one, one positional weight is multiplied by zero. In other words, one positional weight is unchanged, and one positional weight is ignored.

When the slider is at 0.5, half of each positional weight is added together.


In the case where 99.999% of values are close together and there is one extreme outlier, this can cause that field to be unusually dominant, or the opposite. (Most positional weights are very close to either 0 or 1)

As such, one option is to base the positional weight on the data order only. So, in the case of many values being close, but with one extreme outlier; the value in the middle of the list still gets given 0.5 as it's positional weight. In short - Its position in the sequence is important, not it's actual value.

DECLARE
  @count       FLOAT
SELECT
  @count       = CAST(COUNT(*) AS FLOAT)
FROM
  yourTable

WITH
  ordered_data
AS
(
SELECT
  ROW_NUMBER() OVER (ORDER BY timestamp) AS time_id,
  ROW_NUMBER() OVER (ORDER BY price)     AS price_id,
  *
FROM
  yourData
)
SELECT
  *
FROM
  ordered_data
ORDER BY
  (CAST(time_id AS FLOAT) / @count) * @slider
  +
  (CAST(price_id AS FLOAT) / @count) * (1 - @slider)


Which is best, why, etc, starts to get statistical, and depends on exactly what you are trying to achieve. Maybe you could take the average of the two different positional weights, and use those? Hopefully this gives you something to work with though.


Both answers force the positional weight to be a percentage. This is because TIME and PRICE can have vastly different scales. Making them percantages (0 to 1) forces them to be of the same scale. You may want to consider alternative mechanisms for choosing suitable scales, and these may be different for each field.

Each answer works out the positional weight relative to a fixed point : the lowest item in the list. You may wish to choose other reference points such as the MEAN, MODE or MEDIAN. In doing so you will have a range of positional weights of (-x to +y), with x and y potentially being very different values. You may then choose to re-weight these to be (-1 to +1). This will require scaling them along a curve, and you'll need to decide how to determine that curve.

Each answer works out a 'distance' from a fixed reference point as being 0 to 1, or in the previous paragraph -1 to +1. This assumes that both TIME and PRICE are always equally important. But what if you've chosen only the expensive items, where the positional weight should always be closer to 1? You'd need a mechanism to scale against "all possible values" rather than "all present values".

You have a lot of choice here, and what choice is right or wrong is dependant on the functional requirement you set out. I do not believe that there is a universal Truth to find. Perhaps you need to create some examples and work out what you WANT to happen, and then work out HOW?

link|improve this answer
Thank you Dems! If there's a cluster of close records may be I should consider the difference from the average as well ? Can you give me topics, keywords, links I can get more information on this topic. – antitoxic Oct 5 '11 at 23:23
This is all from my own pretty little head. No references, sorry. I'll just add a couple of options / considerations. – Dems Oct 5 '11 at 23:30
feedback

In Solr, you could make a query like:

time:[t]^[wt] price:[p]^[wp]

where [t]=the requested time, [p]=the requested price, and [wt] and [wp] are weights; a higher weight gives more importance to the term it's applied to.

That will weight exact matches, but you can also compute continuous functions of the difference between the requested value and the exact value using a FunctionQuery;

see http://wiki.apache.org/solr/FunctionQuery for more info on that

link|improve this answer
I don't have a requested values for time and price. Just a preference between them. Can I do weighted sorting, not search in solr? – antitoxic Oct 5 '11 at 23:12
In the absence of "requested" values, you could supply the 'average' value. Be that the Mean, Mode or Median. So [t] become the average value of the time field, [p] becomes the average value of the price field. Then [wt] is the slider value, and [wp] is 1 - the slider value. – Dems Oct 5 '11 at 23:22
Oh right - I didn't quite understand this was sorting without any user input. – Mike Sokolov Oct 5 '11 at 23:33
Without filtering on time and price, following the above format -> time:[* TO *]^[wt] price:[* TO *]^[wp]. for ref: wiki.apache.org/solr/… – Geert-Jan Oct 6 '11 at 18:44
Probably nicer (bc. sorting and filtering is completely separated) is sorting using filterqueries. wiki.apache.org/solr/FunctionQuery#Sort_By_Function. It's pretty trivial to build a 'weighted average sorter' using the primary building blocks you have at your disposal. Check the link to see which are available. Best way to model weight as input is to let total weight be 1, and let price and time each have their respective fraction. x and 1-x respectively. – Geert-Jan Oct 6 '11 at 18:50
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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