Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Here is the problem.

We have list of Job orders - each job has certain state associated with it, you can think of state as a situation that job is in, for example,

  • a job that is said to be done
  • or a job that is awaiting someone's approval
  • ...

We have figured out there is 36 types state a job could go into, also there can be more than one state a job can have at a given time. What we want to achieve is how smartly we can sort the jobs for the user so he know on what job he immediate attention should be.

We are also thinking of coloring job names like if it is red - then it is more "hot" job than others or if it is "green" - the logged in user doesn't need to worry about that job and so on.

So, the problem is two -

  1. How to go about making a job red or green ? Since we know the state of job it can be used to identify whether user's attention required on that job, it is going to be not hard. I mean, if the job falls into any of that 36 types of states at a given time, that goes red. Am I making sense here ?

  2. How to sort the list of jobs to show it in the page? What should be the order? Ideally, more hotness (or green or criticality of the attention) the job is the top it should show up. How to do this?. I am afraid we would end of showing a job that requires immediate attention in low order.

We can also track metrics such as a) popularity of the job among other users b) oldness or newness of the job etc., however I am not sure whether this will help on this issue.

I tried with several algorithms such as Elo, Bayesian but couldn't arrive to a satisfiable solution.

share|improve this question
There does not seem to be enough information here to develop a good answer. Question 1 doesn't give us any information to use and question 2 appears to ask us how to sort a list, but it's hard to believe that's what you're really looking for. Please clarify these points. – whuber Jun 13 '12 at 19:09
@whuber - updated the questions. Ideally I want opinion on #1 question. Otherwise, for #2 I don't know how to keep green jobs ordered top (by using different states which can have different weights may be). Bottom line, yes - I don't know how/what algorithm can solve this issue of using "hotness" to order the jobs. – asyncwait Jun 14 '12 at 7:15

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.