1. Delphi估算

1) 项目经理召集小组成员,就项目有关事宜向大家进行阐述。

2)大家提出各种问题,然后进行分配任务。

每个人写下自己的任务列表和时间估算。

3)项目经理收集好任务之后进行复查,看看哪些任务可以同时进行,

得到项目的整体估算。

 2. 宽带Delphi估算

项目成员不能直接接触到,让一帮专家替代项目成员进行估算。

(一般很少使用)

3. 如何处理估算的误差

  你知道,人的估算都会有误差。

有些人过于乐观,任何任务都会少估算50%的工作量。

有些人过于悲观,会为每个任务添加缓冲时间。

有些人只能估算小任务,超过一周的大任务就不对。

那么,项目经理该怎么办呢?

首先,你要了解你的团队你没有必要在项目第一周时就解决所有估算问题。

第一周了解你的团队的估算能力。

为每个人打上标记 (Optimistic/Pessimistic)

对于O要增加他的缓冲时间,通常取估算的1/4, 对于P要减少他的缓冲时间,通常一半。

当然,这要根据实际情况来划分。

4. 顺序式生命周期的陷阱

从一开始就估算整个项目,这是个陷阱

可以让开发团队先做一些开发,再迭代估算整个项目

Project Management - 2) Estimate Your Work的更多相关文章

  1. Project Management Process

    Project Management ProcessDescription .............................................................. ...

  2. The Simplified Project Management Process

    One of the challenges of explaining project management to people who are unfamiliar with the approac ...

  3. Introduction to Project Management(II)

    Introduction The purpose of this paper is to gain an understanding of project management and to give ...

  4. Introduction to Project Management(I)

    Project management in the modern sense began in the early 1950s, although it has its roots further b ...

  5. 简介 - PMP(Project Management Professional)

    PMP(Project Management Professional) 官网(英文报名):https://www.pmi.org/ 中文注册:http://exam.chinapmp.cn/ Boo ...

  6. 10 Rules of Highly Successful Project Management

    I commited the information below to report PDU of PMI. ^_^. In this paper, the author introduces his ...

  7. Software Engineering: 2. Project management

    resources:"Software Engineering" Ian Sommerville For most projects, important goals are: D ...

  8. Software Project Management hw1

    I just want to say something about my java project that I did last year. Our task is to finish a lin ...

  9. Software Project Management 2017 Homework 1

    Recently, I have a project, I use Unity3D to finish a visualization work, which is the final project ...

随机推荐

  1. poj 2506 Tiling(递推 大数)

    题目:http://poj.org/problem?id=2506 题解:f[n]=f[n-2]*2+f[n-1],主要是大数的相加; 以前做过了的 #include<stdio.h> # ...

  2. 取出block所对应的hash值

    /**********************************************************************//** Gets the hash value of t ...

  3. 解锁windowsphone设备遇到的错误:检查Miscrosoft账户凭据、请重新注册 0x80004005 解决方案

    本篇文章主要讲在解锁windowsphone设备时遇到的错误 Error1:登录windowsphone开发人员中心时出错,请检查您的miscrosoft账户凭据 Error2:注册您的手机时出现未知 ...

  4. 8款JS框架比较

    Dojo     Dojo 是目前最为强大的JS框架,它在自己的 Wiki 上给自己下了一个定义,Dojo 是一个用 JavaScript 编写的开源的DHTML工具箱.Dojo 很想做一个“大一统” ...

  5. Excel 内容粘贴到DataGridView, DataGridView 粘贴到 Excel

    void dataGridView1_KeyDown(object sender, KeyEventArgs e) { if (e.Control && e.KeyCode == Ke ...

  6. SQL、LINQ、Lambda 三种用法

    SQL   LinqToSql   Lambda 1. 查询Student表中的所有记录的Sname.Ssex和Class列.select sname,ssex,class from studentL ...

  7. 陈正冲老师对于c语言野指针的解释

    那到底什么是野指针呢?怎么去理解这个“野”呢?我们先看别的两个关于“野”的词: 野孩子:没人要,没人管的孩子:行为动作不守规矩,调皮捣蛋的孩子.野狗:没有主人的狗,没有链子锁着的狗,喜欢四处咬人. 对 ...

  8. ArcGIS 读写lyr层文件

    原文arcengine C# 读写lyr(转) 写lyr IFeatureLayer LineLayer = axMapControl1.get_Layer() as IFeatureLayer; I ...

  9. ios开发中,A valid provisioning profile for this executable was not found,的解决方法

    手头上的一个ios项目在上架后,再进行时出现了以上的这个错误,这是上架后忘了对一些配置进行复原 我的项目解决方法是: 是上面的这一块出现了问题,图片上的配置是正常的情况,但是上架的时候对其进行了修改, ...

  10. codeforce 600C - Make Palindrome

    练习string 最小变换次数下,且字典序最小输出回文串. #include <cstdio> #include <cstring> #include <cmath> ...