本文介绍了如何在Azure DevOps分析中为Sprints和Amp计算特定指标板子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要知道这些指标如何在Sprints&的Azure DevOps分析中进行计算.木板:

I need to know how these metrics are calculated in Azure DevOps analytics for Sprints & Boards:

  1. 完成百分比
  2. 平均燃尽
  3. 总范围增加

(对于工作项计数"和剩余工作总数"报告)

(for the reports 'Count of work items' & 'Sum of remaining work')

我无法在Azure DevOps文档中找到有关用于计算这些指标的公式的确切详细信息.

I was not able to find exact details regarding the formula used to calculate these metrics in Azure DevOps documentation.

推荐答案

根据您的问题,您可以尝试以下计算:

Depending on your question, you can try the following calculation:

1.完成百分比已完成=已完成/(已完成+剩余)

1.    Completed percentageCompleted=completed/(completed+remaining)

2.平均燃尽

平均燃尽"的含义是每个间隔或迭代完成的平均工作量.例如,下图中的平均燃尽是"-2"

The meaning of Average Burndown is Average work completed per interval or iteration.For example, the Average burndown in the image below is ‘-2’

计算过程为:((0-0)+(0-12)+(12-12)+(12-12)+(12-12)+(12-12))/6 = -2

The calculation process is:((0-0)+(0-12)+(12-12)+(12-12)+(12-12)+(12-12))/6=-2

3.总范围增加

总合并范围增加"的含义是显示自燃尽开始以来已向原始合并范围添加了多少工作.正式文件的定义也可以帮助您理解: https://docs.microsoft.com/zh-CN/azure/devops/report/dashboards/configure-burndown-burnup-widgets?view=azure-devops

The meaning of Total Scope Increase is show how much work was added to the original scope since the burndown started.The definition of an official document may also help you understand:https://docs.microsoft.com/en-us/azure/devops/report/dashboards/configure-burndown-burnup-widgets?view=azure-devops

这篇关于如何在Azure DevOps分析中为Sprints和Amp计算特定指标板子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 16:20