varadpuntambekar commited on
Commit
365661e
·
verified ·
1 Parent(s): 94c3478

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -920,8 +920,8 @@ def clear_csv_file():
920
  def plotly_plotter():
921
  filepath = 'final_summary_table.csv'
922
  df_to_plot = pd.read_csv(filepath)
923
- fig = sp.make_subplots(rows = 1, cols= 3, subplot_titles= ("Max Queue Length for Different Processes",
924
- 'Percent Utilisation for different Professionals','Time to important events'))
925
 
926
  fig.add_trace(go.Scatter(x = df_to_plot['Experiment_No'], y = df_to_plot['Max_Scr_Proc_Q_len'], name = "Q len for Screen Processing"), row = 1, col = 1)
927
  fig.add_trace(go.Scatter(x = df_to_plot['Experiment_No'], y = df_to_plot['Max_Scr_Rep_Q_len'], name = "Q len for Screen Reporting"),row = 1, col = 1)
 
920
  def plotly_plotter():
921
  filepath = 'final_summary_table.csv'
922
  df_to_plot = pd.read_csv(filepath)
923
+ fig = sp.make_subplots(rows = 1, cols= 3, subplot_titles= ("Max Queue Length",
924
+ 'HR % Utilisation','Time to important events'))
925
 
926
  fig.add_trace(go.Scatter(x = df_to_plot['Experiment_No'], y = df_to_plot['Max_Scr_Proc_Q_len'], name = "Q len for Screen Processing"), row = 1, col = 1)
927
  fig.add_trace(go.Scatter(x = df_to_plot['Experiment_No'], y = df_to_plot['Max_Scr_Rep_Q_len'], name = "Q len for Screen Reporting"),row = 1, col = 1)