Skip to content

Commit

Permalink
Merge pull request #74 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 a358827 + f609ba7 commit b00bd82
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Binary file added metricas/throughput.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions metricas/throughput.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import numpy as np
import matplotlib.pyplot as plt

sprints = ['01','02','03','04','05','06']
tasks = [32,39,42,45,52, 76]

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

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

0 comments on commit b00bd82

Please sign in to comment.