Skip to content

Commit

Permalink
chore: adjust time estimation
Browse files Browse the repository at this point in the history
When we manually compared hours tracked in Dework and hours estimated by NationCred, we learned that the real number was 80% of the estimated number.

So adjusting 2.5 to 2.5x0.8 = 3.125
  • Loading branch information
aahna-ashina authored Sep 2, 2023
1 parent e79b108 commit 6476575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nationcred/src/generate-datasets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function loadNationCredData() {
}
})
console.info('sourceCredScore:', sourceCredScore)
const sourceCredHours: number = sourceCredScore / 2.5
const sourceCredHours: number = sourceCredScore / 3.125
console.info('sourceCredHours:', sourceCredHours)

valueCreationHours += sourceCredHours
Expand Down

0 comments on commit 6476575

Please sign in to comment.