Skip to content

Commit

Permalink
Merge pull request #76 from FGA0138-MDS-Ajax/metricas
Browse files Browse the repository at this point in the history
Metricas
  • Loading branch information
lucasqueiroz23 authored Dec 4, 2023
2 parents 2b85931 + 92ebf21 commit 65a8d53
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Binary file added metricas/velocity.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions metricas/velocity.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import numpy as np
import matplotlib.pyplot as plt

sprints = ['01','02','03','04','05','06']
tasks = [6, 3 , 0 , 0, 3, 8 + 5 + 4 + 4]

i = 1
count = 0
final = []
for t in tasks:
count += t/i
i += 1
final.append(count)

print(final)

plt.bar(sprints,final,color="purple")

plt.xticks(sprints)
plt.ylabel('Tasks')
plt.xlabel('Sprints')
plt.title('velocity')
plt.grid(True)
plt.show()

0 comments on commit 65a8d53

Please sign in to comment.