Can we put percentage on amount of work of a certain role in project's lifecycle?
Posted
by
deviDave
on Programmers
See other posts from Programmers
or by deviDave
Published on 2012-11-19T10:22:55Z
Indexed on
2012/11/19
11:33 UTC
Read the original article
Hit count: 291
The title may be confusing, but I will elaborate it here.
I am trying to figure our how much time and effort each person spend during some project.
I divided roles into:
- junior developer (works mainly on UI and some light things)
- senior developer (develops complex logic, database structures, etc.)
- lead developer (leads the team, usually most experienced person)
- negotiator/resolver (a person who directly talk to a client trying to either negotiate terms and timeframe or to clarify vagueness presented by a team leader)
My AIM is to calculate percentage of role's involvement based on quality, not time (obviously a junior will spend most time in project, but with the least quality). In the end I would get a table which may look like this:
Total: 100%
----------------
Junior: 10%
Senior: 50%
Lead: 30%
Negotiator: 10%
Can this be achieved? Has anyone found any source which may help me?
© Programmers or respective owner