linx5o commited on
Commit
c3e8aad
·
1 Parent(s): 9cb729f
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -682,8 +682,8 @@ def get_data_default(time_scale, exp):
682
  utc_time = utc_time.replace(tzinfo=pytz.utc)
683
  local_time = utc_time.astimezone(local_tz)
684
  temp["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
685
- df = pd.DataFrame(temp_graph)
686
- df = df.set_index("x")
687
 
688
  plt.figure()
689
  plt.plot(df)
@@ -702,8 +702,8 @@ def get_data_default(time_scale, exp):
702
  utc_time = utc_time.replace(tzinfo=pytz.utc)
703
  local_time = utc_time.astimezone(local_tz)
704
  od["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
705
- df = pd.DataFrame(od_graph)
706
- df = df.set_index("x")
707
 
708
  plt.figure()
709
  plt.plot(df)
@@ -722,8 +722,8 @@ def get_data_default(time_scale, exp):
722
  utc_time = utc_time.replace(tzinfo=pytz.utc)
723
  local_time = utc_time.astimezone(local_tz)
724
  od["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
725
- df = pd.DataFrame(norm_od_graph)
726
- df = df.set_index("x")
727
 
728
  plt.figure()
729
  plt.plot(df)
@@ -742,8 +742,8 @@ def get_data_default(time_scale, exp):
742
  utc_time = utc_time.replace(tzinfo=pytz.utc)
743
  local_time = utc_time.astimezone(local_tz)
744
  gr["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
745
- df = pd.DataFrame(growth_rate_graph)
746
- df = df.set_index("x")
747
 
748
  plt.figure()
749
  plt.plot(df)
 
682
  utc_time = utc_time.replace(tzinfo=pytz.utc)
683
  local_time = utc_time.astimezone(local_tz)
684
  temp["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
685
+ df = pd.DataFrame(temp_graph)
686
+ df = df.set_index("x")
687
 
688
  plt.figure()
689
  plt.plot(df)
 
702
  utc_time = utc_time.replace(tzinfo=pytz.utc)
703
  local_time = utc_time.astimezone(local_tz)
704
  od["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
705
+ df = pd.DataFrame(od_graph)
706
+ df = df.set_index("x")
707
 
708
  plt.figure()
709
  plt.plot(df)
 
722
  utc_time = utc_time.replace(tzinfo=pytz.utc)
723
  local_time = utc_time.astimezone(local_tz)
724
  od["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
725
+ df = pd.DataFrame(norm_od_graph)
726
+ df = df.set_index("x")
727
 
728
  plt.figure()
729
  plt.plot(df)
 
742
  utc_time = utc_time.replace(tzinfo=pytz.utc)
743
  local_time = utc_time.astimezone(local_tz)
744
  gr["x"] = local_time.strftime("%Y-%m-%d %H:%M:%S")
745
+ df = pd.DataFrame(growth_rate_graph)
746
+ df = df.set_index("x")
747
 
748
  plt.figure()
749
  plt.plot(df)