ldhldh commited on
Commit
c494abd
·
1 Parent(s): 6f7cfe2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -129,10 +129,8 @@ timestamp_list_date_str = []
129
  for d in timestamp_list_date:
130
  timestamp_list_date_str.append(strftime('%Y-%m-%d', localtime( d )))
131
  call_data = pd.DataFrame(timestamp_inference_data, columns = ["inference call"], index = timestamp_list_date_str)
132
- st.area_chart(call_data)
133
- print(timestamp_inference_data)
134
 
135
- print(timestamp_list_date_str)
136
 
137
  class BubbleChart:
138
  def __init__(self, data, bubble_spacing=0, n_bins=5):
 
129
  for d in timestamp_list_date:
130
  timestamp_list_date_str.append(strftime('%Y-%m-%d', localtime( d )))
131
  call_data = pd.DataFrame(timestamp_inference_data, columns = ["inference call"], index = timestamp_list_date_str)
132
+ st.bar_chart(call_data)
 
133
 
 
134
 
135
  class BubbleChart:
136
  def __init__(self, data, bubble_spacing=0, n_bins=5):