So, check
this out. It's mostly javascript.
Could you guys play around with it a little and report bugs? I'm mostly concerned on giving results that are close to the truth.
So far, stuff are ranked linearly. For instance, if you've got three options in a group it would be like:
best = 0
medium = 1
worst = 2
And the total score in that category is: (total_items_in_category - rank)/total_items_in_category. So, if I choose the 'best' item, I get the maximum (1/1), but if I choose the 'medium' one, I'm getting (3-1)/3 = 0.66/1 total effectiveness.
I'm considering another approach (e.g. using the
logistic function to generate the results).
Any thoughts?