dtcxzyw commited on
Commit
bc5e217
·
unverified ·
1 Parent(s): cc27966
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -101,6 +101,8 @@ timeline_df = pd.DataFrame(
101
  fixed_by_cat = dict()
102
  for bug_id in fixed_bug_ids:
103
  fixed_by_cat[bug_id_to_type[bug_id]] = fixed_by_cat.get(bug_id_to_type[bug_id], 0) + 1
 
 
104
  fixed_by_cat_df = pd.DataFrame(
105
  {
106
  "Category": [str(cat).capitalize() for cat in fixed_by_cat.keys()],
 
101
  fixed_by_cat = dict()
102
  for bug_id in fixed_bug_ids:
103
  fixed_by_cat[bug_id_to_type[bug_id]] = fixed_by_cat.get(bug_id_to_type[bug_id], 0) + 1
104
+ fixed_by_cat["All"] = len(fixed_bug_ids)
105
+ bug_id_by_cat["All"] = total_issues
106
  fixed_by_cat_df = pd.DataFrame(
107
  {
108
  "Category": [str(cat).capitalize() for cat in fixed_by_cat.keys()],