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 ...
随机推荐
- flask开发遇到Internal Server Error的解决办法
flask开发过程中遇到了Internal Server Error错误,可以在代码加上debug app.debug=True 这样就能看到错误信息了
- HTML5学习(八)----Web存储
参考地址:http://www.w3school.com.cn/html5/html_5_webstorage.asp 在客户端存储数据 HTML5 提供了两种在客户端存储数据的新方法: localS ...
- centos 搭建 darwin calendar 服务器
方法一(官网方法): useradd caluser ----为日历服务器建立一个新用户,方便管理 passwd caluser -----新用户更改密码 su caluser mkdir ~/Cal ...
- 漫长的补结题报告之路 poj3622
题意(引用):题意:有很多种草,有两个属性:价格和新鲜度:有很多牛,它们都会各自需求一种草,要求是其价格最低为ai,新鲜度最低为bi,且这些牛不希望自己的草和别人的一样.问要满足所有需求的最小花费是多 ...
- Excel 内容粘贴到DataGridView, DataGridView 粘贴到 Excel
void dataGridView1_KeyDown(object sender, KeyEventArgs e) { if (e.Control && e.KeyCode == Ke ...
- Java [leetcode 25]Reverse Nodes in k-Group
题目描述: Given a linked list, reverse the nodes of a linked list k at a time and return its modified li ...
- oracle11g dataguard部署指南
一.Oracle11DB+DG配置 1. 单机环境介绍(PRIMARY DATABASE) 主库 primary public ip 192.168.0.252 ...
- 15个实用的Linux find命令示例(一)
除了在一个目录结构下查找文件这种基本的操作,你还可以用find命令实现一些实用的操作,使你的命令行之旅更加简易. 本文将介绍15种无论是于新手还是老鸟都非常有用的Linux find命令. 首先,在你 ...
- span文字在左背景图片在右
<html><head><meta http-equiv="Content-Type" content="text/html; charse ...
- HDU 3335 Divisibility dancing links 重复覆盖
分析: dlx重复覆盖的巧用,重复覆盖的原理恰好符合本题的筛选方式,即选择一个数后,该数的倍数或约数可以保证在之后的搜索中不会被选择 于是修改一下启发函数,求解最大的重复覆盖即可. 其实不一定不被 ...