Answer the question
In order to leave comments, you need to log in
How to combine two parameters to get a single number?
There are the number of days to complete the project and the number of hours to complete the project tasks. What formula can be used to obtain the percentage of completion of the project based on these two parameters?
There are thoughts that you can reduce both parameters to percentages:
1. d = (number of days until the deadline) / (total days for the project)
2. h = (remaining hours) / (total hours to complete)
Then use F score:
F = (2*d*h) / (d+h
)
1. d = 0.1 (deadline is still far away)
2. h = 0.9 (assignments are almost done)
But F score = 18%, which is not very satisfactory
Please direct me in which direction to think
PS in F score precision and recall should ideally be large, but the situation is different.
It's good when h is big and d is small
Answer the question
In order to leave comments, you need to log in
to get the project completion percentageonly the amount of work is needed: completed / total. With a stretch for reality, you can count the hours: spent / total.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question