librarian-bot commited on
Commit
1722c11
1 Parent(s): 4992d0d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -92,9 +92,10 @@ with gr.Blocks() as demo:
92
  "The below pie chart shows the percentage of pull requests made by librarian bot that are open, closed or merged"
93
  )
94
  create_pie()
 
 
 
95
  with gr.Column():
96
  gr.Markdown("## Pull requests status by PR number")
97
  gr.DataFrame(group_status_by_pr_number())
98
- with gr.Column():
99
- gr.Plot(plot_over_time())
100
  demo.launch(debug=True)
 
92
  "The below pie chart shows the percentage of pull requests made by librarian bot that are open, closed or merged"
93
  )
94
  create_pie()
95
+ with gr.Column():
96
+ gr.Markdown("Pull requests opened, closed and merged over time (cumulative)")
97
+ gr.Plot(plot_over_time())
98
  with gr.Column():
99
  gr.Markdown("## Pull requests status by PR number")
100
  gr.DataFrame(group_status_by_pr_number())
 
 
101
  demo.launch(debug=True)