vote up 41 vote down star
22

Do you inflate your estimated completion dates? If so why? How much?

I tend to inflate mine a little because I can be overly optimistic.

flag
show 3 more comments

53 Answers

1 2 next
vote up 106 vote down check

Hofstadter's Law: Any computing project will take twice as long as you think it will — even when you take into account Hofstadter's Law.

link|flag
2  
Much like Parkinson's Law, this is only popular (and a law) because it is funny, not that its necessarily true. – CodeSlave Feb 11 at 17:20
2  
StackOverflow: putting more character points into our Notice Obvious skill every day. – chaos Feb 11 at 20:15
3  
-1: It's funny, but it diverges to infinity. Project completion time estimates should be finite. At least that's what my boss keeps telling me... – cdleary Mar 16 at 1:56
show 2 more comments
vote up 15 vote down

Take whatever estimate you think appropriate. Then double it.

link|flag
vote up 44 vote down

Oh yes, I've learnt to always multiply my initial estimation by two. That's why FogBUGZ's Evidence-Based Scheduling tool is so really useful.

link|flag
1  
Dan: I do use it for one of my projects. It is really great stuff. – DrJokepu Feb 11 at 22:11
1  
yeah, +1 on that - its pretty amazing. – AviD Mar 12 at 19:10
show 2 more comments
vote up 2 vote down

Oh yes, the general rule from long hard experience is give the project your best estimate for time, double it, and that's about how long it will actually take!

link|flag
vote up 4 vote down

I wouldn't say I inflate them, so much as I try to set more realistic expectations based on past experience.

link|flag
vote up 37 vote down

If you inflate your estimate based on past experiences to try and compensate for your inherent optimism, then you aren't inflating. You are trying to provide an accurate estimate. If however you inflate so that you will always have fluff time, that's not so good.

link|flag
show 1 more comment
vote up 17 vote down

Typically yes, but I have two strategies:

  1. Always provide estimates as a range (i.e. 1d-2d) rather than a single number. The difference between the numbers tells the project manager something about your confidence, and allows them to plan better.
  2. Use something like FogBugz' Evidence Based-Scheduling, or a personal spreadsheet, to compare your historical estimates to the time you actually took. That'll give you a better idea than always doubling. Not least because doubling might not be enough!
link|flag
show 2 more comments
vote up 0 vote down

Joel has a great article about Evidence Based Scheduling.

link|flag
show 1 more comment
vote up 11 vote down

A good rule of thumb is estimate how long it will take and add 1/2 again as much time to cover the following problems:

  1. The requirements will change
  2. You will get pulled onto another project for a quick fix
  3. The New guy at the next desk will need help with something
  4. The time needed to refactor parts of the project because you found a better way to do things
link|flag
show 1 more comment
vote up 20 vote down

It's not called "inflating" — it's called "making them remotely realistic."

link|flag
1  
Yes, and it's your only weapon in a world where management likes to encourage "aggressive schedules." – Greg D Jul 15 at 14:00
vote up 2 vote down

I wouldn't say I inflate them but I do like to use a template for all possible tasks that could be involved in the project.

You find that not all tasks in your list are applicable to all projects, but having a list means that I don't let any tasks slip through the cracks with me forgetting to allow some time for them.

As you find new tasks are necessary, add them to your list.

This way you'll have a realistic estimate.

I tend to be optimistic in what's achievable and so I tend to estimate on the low side. But I know that about my self so I tend to add on an extra 15-20%.

I also keep track of my actuals versus my estimates. And make sure the time involved does not include other interruptions, see the accepted answer for my SO question on how to get back in the flow.

HTH

cheers

link|flag
show 1 more comment
vote up 3 vote down

I wouldn't call additional estimated time on a project "inflated" unless you actually do complete your projects well before your original estimation. If you make a habit of always completing the project well before your original estimated time, then project leaders will get wise and expect it earlier.

link|flag
vote up 3 vote down

You can calculate project durations in two ways - one is to work out all the tasks involved and figure out how long each will take, factor in delays, meetings, problems etc. This figure always looks woefully short, which is why people always say things like 'double it'. After some experience in delivering projects you'll be able to tell very quickly, just by looking briefly at a spec how long it will take, and, invariably, it will be double the figure arrived at by the first method...

link|flag
vote up 3 vote down

It's a better idea to add specific buffer time for things like debugging and testing than to just inflate the total time. Also, by taking the time up front to really plan out the pieces of the work, you'll make the estimation itself much easier (and probably the coding, too).

If anything, make a point of recording all of your estimates and comparing them to actual completion time, to get a sense of how much you tend to underestimate and under what conditions. This way you can more accurately "inflate".

link|flag
vote up 1 vote down

Many people here are saying make an estimate and double it (and sometimes double it again). Others are saying use Evidence Based scheduling (al la Joel).

When I'm estimating a project, there are four components for each task:

  1. My best guess as to how long it will take.
  2. The uncertainty (risk) - like perhaps there is something (an known/unknown unknown) not in the spec that will double the time.
  3. Bug Fixes
  4. Contingency Time

For #1, I use the most realistic estimate I can.
For #2, I decide the probably of the risk and then multiply #1 by that an get an adjusted estimate,
For #3 and #4 I multiply the adjusted estimate by 20% and that become the value of each.

So for any task, the final total is 140% or more of the original estimate.

For the whole project, the contingencies and bug fixes get collected up into two separate tasks and eaten into as the project progresses.

Of course that's not including testing which I typically make equal to the total value for each task.

link|flag
vote up 2 vote down

What are your estimates based on?

If they're based on nothing but a vague intuition of how much code it would require and how long it would take to write that code, then you better pad them a LOT to account for subtasks you didn't think of, communication and synchronization overhead, and unexpected problems. Of course, that kind o estimate is nearly worthless anyway.

OTOH, if your estimates are based on concrete knowledge of how long it took last time to do a task of that scope with the given technology and number of developers, then inflation should not be necessary, since the inflationary factors above should already be included in the past experiences. Of course there will be probably new factors whose influence on the current project you can't foresee - such risks justify a certain amount of additional padding.

link|flag
vote up 2 vote down

This is part of the reason why Agile teams estimate tasks in story points (an arbitrary and relative measurement unit), then as the project progresses track the team's velocity (story points completed per day). With this data you can then theoretically compute your completion date with accuracy.

link|flag
vote up 1 vote down

a friend of mine once told me that he uses this algorithm:

  1. make a estimate
  2. express it in the biggest time unit you can, without going under the value 0.5
  3. let's call it x (units)
  4. the result is 2*x+2 (units)
link|flag
show 1 more comment
vote up 3 vote down

A lot depends on how detailed you want to get - but additional 'buffer' time should be based on a risk assessment - at a task level, where you put in various buffer times for: High Risk: 50% to 100% Medium Risk: 25% to 50% Low Risk: 10% to 25% (all dependent on prior project experience).

Risk areas include:

  • est. of requirement coverage (#1 risk area is missing components at the design and requirement levels)
  • knowledge of technology being used
  • knowledge/confidence in your resources
  • external factors such as other projects impacting yours, resource changes, etc.

So, for a given task (or group of tasks) that cover component A, initial est. is 5 days and it's considered a high risk based on requirements coverage - you could add between 50% to 100%

link|flag
vote up 1 vote down

I dont inflate my estimates I pad them!

link|flag
vote up 0 vote down

I like the "double it" policy. However, at the very least increase it by 30%. This was once told by us by a Sr. Manager at my last IBank.

link|flag
vote up 1 vote down

Two weeks.

Industry standard: every request will take two weeks. Some will be longer, some will be shorter, everything averages out in the end.

link|flag
show 1 more comment
vote up 1 vote down

We have to, because our idiot manager always reduces them without any justification whatever. Of course, as soon as he realizes we do this, we're stuck in an arms race...

I fully expect to be the first person to submit a two-year estimate to change the wording of a dialog.

sigh.

link|flag
show 1 more comment
vote up 6 vote down

<sneaky>
Instead of inflating your project's estimate, inflate each task individually. It's harder for your superiors to challenge your estimates this way, because who's going to argue with you over minutes.
</sneaky>

But seriously, through using EBS I found that people are usually much better at estimating small tasks than large ones. If you estimate your project at 4 months, it could very well be 7 month before it's done; or it might not. If your estimate of a task is 35 minutes, on the other hand, it's usually about right.

FogBugz's EBS system shows you a graph of your estimation history, and from my experience (looking at other people's graphs as well) people are indeed much better at estimating short tasks. So my suggestion is to switch from doing voodoo multiplication of your projects as totals, and start breaking them down upfront into lots of very small tasks that you're much better at estimating.

Then multiply the whole thing by 3.14.

link|flag
show 1 more comment
vote up 3 vote down

Six weeks.

Industry standard: every request will take six weeks. Some will be longer, some will be shorter, everything averages out in the end.

Also, if you wait long enough, it no longer becomes an issue. I can't tell you how many times I've gone through that firedrill only to have the project/feature cut.

link|flag
vote up 10 vote down

I'll be able to answer this in 3-6 weeks.

link|flag
vote up 0 vote down

If you have to double or inflate your estimates in order for them to work out close to reality then your original estimate was clearly wrong or incomplete. Estimates need to include all factors the task may encounter. Adding extra time for no valid reason is just covering your a**, there should be a reason behind the full amount, not just add X to be safe. If you know there will be redesign and tweaks, then factor those in, same for meetings, testing, bug fixes, etc.

A proper estimate should match atcuals or be close, otherwise the estimate was incorrect.

The goal is to have actuals be as close to the estimate as possible, coming in well under is just as bad as going over in the estimating game IMHO.

link|flag
vote up 24 vote down

The Scotty Rule:

  • make your best guess
  • round up to the nearest whole number
  • double that quadruple that (thanks Adam!)
  • increase to the next higher unit of measure

Example:

  • you think it will take 3.5 hours
  • round that to 4 hours
  • quadruple that to 16 hours
  • shift it up to 16 days

Ta-daa! You're a miracle worker when you get it done in less than 8 days.

link|flag
1  
The Scotty multiplies his estimates by four. He admits as much in Wrath of Khan. – Adam Jaskiewicz Mar 11 at 20:18
vote up 0 vote down

As a lot said, it's a delicate balance between experience and risk.

  1. Always start by breaking down the project in manageable pieces, in fact, in pieces you can easily imagine yourself starting and finishing in the same day

  2. When you don't know how to do something (like when it's the first time) the risk goes up

  3. When your risk goes up, that's where you start with your best guess, then double it to cover some of the unexpected, but remember, you are doing that on a small piece of the project, not the whole project itself

  4. The risk goes up also when there's a factor you don't control, like the quality of an input or that library that seems it can do everything you want but that you never tested

  5. Of course, when you gain experience on a specific task (like connecting your models to the database), the risk goes down

  6. Sum everything up to get your subtotal...

  7. Then, on the whole project, always add about another 20-30% (that number will change depending on your company) for all the answers/documents/okays you will be waiting for, meetings we are always forgetting, the changes of idea during the project and so on... that's what we call the human/political factor

  8. And again add another 30-40% that accounts for tests and corrections that goes out of the tests you usually do yourself... such as when you'll first show it to your boss or to the customer

Of course, if you look at all this, it ends up that you can simplify it with the magical "double it" formulae but the difference is that you'll be able to know what you can squeeze in a tight deadline, what you can commit to, what are the dangerous tasks, how to build your schedule with the important milestones and so on.

I'm pretty sure that if you note the time spent on each pure "coding" task and compare it to your estimations in relation to its riskiness, you won't be so far off. The thing is, it's not easy to think of all the small pieces ahead and be realistic (versus optimistic) on what you can do without any hurdle.

link|flag
vote up 2 vote down

I take my worst case scenario, double it, and it's still not enough.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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