Project Management - 2) Estimate Your Work
1. Delphi估算
1) 项目经理召集小组成员,就项目有关事宜向大家进行阐述。
2)大家提出各种问题,然后进行分配任务。
每个人写下自己的任务列表和时间估算。
3)项目经理收集好任务之后进行复查,看看哪些任务可以同时进行,
得到项目的整体估算。
2. 宽带Delphi估算
项目成员不能直接接触到,让一帮专家替代项目成员进行估算。
(一般很少使用)
3. 如何处理估算的误差
你知道,人的估算都会有误差。
有些人过于乐观,任何任务都会少估算50%的工作量。
有些人过于悲观,会为每个任务添加缓冲时间。
有些人只能估算小任务,超过一周的大任务就不对。
那么,项目经理该怎么办呢?
首先,你要了解你的团队。你没有必要在项目第一周时就解决所有估算问题。
第一周了解你的团队的估算能力。
为每个人打上标记 (Optimistic/Pessimistic)
对于O要增加他的缓冲时间,通常取估算的1/4, 对于P要减少他的缓冲时间,通常一半。
当然,这要根据实际情况来划分。
4. 顺序式生命周期的陷阱
从一开始就估算整个项目,这是个陷阱
可以让开发团队先做一些开发,再迭代估算整个项目
Project Management - 2) Estimate Your Work的更多相关文章
- Project Management Process
Project Management ProcessDescription .............................................................. ...
- The Simplified Project Management Process
One of the challenges of explaining project management to people who are unfamiliar with the approac ...
- Introduction to Project Management(II)
Introduction The purpose of this paper is to gain an understanding of project management and to give ...
- Introduction to Project Management(I)
Project management in the modern sense began in the early 1950s, although it has its roots further b ...
- 简介 - PMP(Project Management Professional)
PMP(Project Management Professional) 官网(英文报名):https://www.pmi.org/ 中文注册:http://exam.chinapmp.cn/ Boo ...
- 10 Rules of Highly Successful Project Management
I commited the information below to report PDU of PMI. ^_^. In this paper, the author introduces his ...
- Software Engineering: 2. Project management
resources:"Software Engineering" Ian Sommerville For most projects, important goals are: D ...
- 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 ...
- Software Project Management 2017 Homework 1
Recently, I have a project, I use Unity3D to finish a visualization work, which is the final project ...
随机推荐
- Android开发UI之手动显示和隐藏软键盘
1.方法一(如果输入法在窗口上已经显示,则隐藏,反之则显示) InputMethodManager imm = (InputMethodManager) getSystemService(Contex ...
- 中国VR公司的详尽名单
中国VR公司的详尽名单 <VR圈深度投资报告一:2014年以来所有VR/AR融资事件> 特征一.投资机构观望居多 尽管VR在媒体和二级市场炒得很热,但大多风险投资机构却慎于出手,以观望 ...
- CSS sprites 技术
Css Sprites 技术逐渐流行,各大网站上都可以看到它的身影. 但从本质上,Css Sprites 只是 Css 技术的一个使用小窍门,初学者也能快速上手. Css Sprites 简单解释: ...
- TreeView点击父节点不刷新展开子节点
1.设置TreeView的属性EnableClientScript=true: 2.在动态绑定TreeView时,设置Node的属性SelectAction为Expand newNode. ...
- Cookie设置HttpOnly,Secure,Expire属性
在eclipese中创建Web工程时,有个dynamic web module version选项,首先解释下这个选项的意思: http://stackoverflow.com/questions/3 ...
- (4)java方法区
java方法区[名词解析] --->和java堆一样,方法区是一块所有线程共享的内存区域. --->保存系统的类信息,比如,类的字段,方法,常量池等. ...
- c#编程指南(四) 组元(Tuple)
(1).C#语法中一个个问号(?)的运算符是指:可以为 null 的类型. MSDN上面的解释: 在处理数据库和其他包含不可赋值的元素的数据类型时,将 null 赋值给数值类型或布尔型以及日期类型的功 ...
- Android调试工具及方法
转自:http://www.cnblogs.com/feisky/archive/2010/01/01/1637566.html Logcat Dump一份系统消息的日志.这些消息包括模拟器抛出错误时 ...
- 多线程与网络之NSURLConnection发送请求
*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } ...
- Leetcode OJ : Restore IP Addresses backtrack暴搜 C++ solution
class Solution { public: vector<string> ret; string src; int len; unordered_set<string> ...