I’ve been banging my head against a wall on this one.
I’m working on a project where the client owns a call centre and wants to estimate the number of people needed to work in half hour slots on a campaign by inputting a peak hour, an estimate of the people needed in that hour and presumably a standard deviation. This should then “fan out” the values to the other slots (diminishing on both sides of the peak).
If this was a graph you would have half hour slots on the x-axis (1 to 48) and number of people needed along the y-axis, which would look like a bell curve with the peak being at the specified peak hour.
How can I get approximate values of the seats needed for each half hour slot? Any point in the right direction would be much appreciated!
P.S. Working in .NET if anyone knows of any libraries that can do this.
You can get the forumula for the probability density function (along with a .NET libary) here
However, I work on a call center software myself at my job, and I can tell you the FTEs are never normally distributed. There are usually ~2-3 overlapping normal distributions, one skewed left and one skewed right depending on the time of day (early morning, late afternoon) and type of campaign (B2B to B2C).
For a more accurate estimation I would recommend keeping a history of previous activity/load in your call center (what is the average load at each half-hour intervals) then use that as the distribution baseline, scaling it to fit for the expected peak load and estimated call length. This is what we do in ProtCall, and we are usually right within 90 % – 95 % of the actual load. Sometimes. Sometimes we miss by a factor of 10.
EDIT:
Ok, I took a little time to look at how we estimate loads, and standard distribution is not going to get you nowhere. Take a look at a couple of screenshots from our charts and you’ll see how diferent the distribution actually looks.
What you need to do( basically ):
scale by estimated nr of calls or (more acuratelly) by estimated number of talk-time-minutes per day)
Alternatively, if you simply have a table with a row entry for each call made you can simply :
to count the calls made each hour. It will sample per hour, not per minute, but it might be enough to give you the baseline