Skip to content

Commit

Permalink
Fix velocity stdev
Browse files Browse the repository at this point in the history
  • Loading branch information
matejak committed Jun 19, 2023
1 parent 931b3d7 commit 6e1e643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estimage/webapp/templates/retrospective_overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2>Burndown</h2>
<h2>Velocity</h2>
<p>
<ul>
<li>Average weekly across the whole period: {{ "%.02g" % (total_points_done / total_days_in_period * 7) }}, 𝜎 = {{ "%.03g" % velocity_stdev }}</li>
<li>Average weekly across the whole period: {{ "%.02g" % (total_points_done / total_days_in_period * 7) }}, 𝜎 = {{ "%.02g" % velocity_stdev * 7 }}</li>
</ul>
</p>
<p>
Expand Down

0 comments on commit 6e1e643

Please sign in to comment.