I have data that looks like this:
Tell_1 Tell_2 Tell_3
0 0 -8
-3 0 0
0 0 0
-4 -2 0
0 0 -2
-14 -4 -1
0 0 0
-1 0 -1
Index: I1 I2 I3
'----------------------------------------------
This data represents the wait time of each customer at a teller. The value 0 means the customer did not wait at all. The value -x means the customer had to wait x minutes before being served.
How can I develop an teller performance index (a mathematical function that takes the wait times an produce 1 value) that shows the teller performance ($I1$, $I2$, $I3$,...)?
One way is to just sum each column to obtain -22,-6, and -12. This is only good at showing wait times. However, this does not show how many customers were served immediately (which is a good thing). As a result this index is no good.
Another approach that I considered was to assume a max wait time value, say 100, then calculate the index per teller as $\sum(x_i+100)$ to get: 778, 794, and 788. But how good is this one?
I need the index to reflect both the wait times and the number of customers that were served immediately.
Note: This is not a homework, also, it is not a real situation.
Thanks for your help.
I would recommend looking at the average wait time per customer. While this does not directly count the number of customers who did not have to wait at all, that number definitely affects the measure.
Teller #1 has an average wait time per customer of 2.75 minutes.
Teller #2 has an average wait time per customer of 0.75 minutes.
Teller #3 has an average wait time per customer of 1.50 minutes.
This would suggest that perhaps Teller #2 is more efficient.