ngocminhta commited on
Commit
bf7ee78
·
verified ·
1 Parent(s): b7ca4ee

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -12,10 +12,14 @@ def respond(
12
  count_kv = ((df[khoi] >= score[khoi].iloc[0]) & (df['kv'] == score['kv'].iloc[0])).sum()
13
  count_tinh = ((df[khoi] >= score[khoi].iloc[0]) & (df['tinh'] == score['tinh'].iloc[0])).sum()
14
 
 
 
 
 
15
  return f"""Tổng điểm theo khối {khoi} của bạn là: {score[khoi].iloc[0]}
16
- Thứ hạng toàn quốc: {count_all}
17
- Thứ hạng theo khu vực: {count_kv}
18
- Thứ hạng theo tỉnh: {count_tinh}""", score.iloc[:, 1:10]
19
 
20
  """
21
  Chatbot
 
12
  count_kv = ((df[khoi] >= score[khoi].iloc[0]) & (df['kv'] == score['kv'].iloc[0])).sum()
13
  count_tinh = ((df[khoi] >= score[khoi].iloc[0]) & (df['tinh'] == score['tinh'].iloc[0])).sum()
14
 
15
+ count_all_noscore = (df[khoi] >= 0).sum()
16
+ count_kv_noscore = ((df[khoi] >= 0) & (df['kv'] == score['kv'].iloc[0])).sum()
17
+ count_tinh_noscore = ((df[khoi] >= 0) & (df['tinh'] == score['tinh'].iloc[0])).sum()
18
+
19
  return f"""Tổng điểm theo khối {khoi} của bạn là: {score[khoi].iloc[0]}
20
+ Thứ hạng toàn quốc: {count_all} / {count_all_noscore}
21
+ Thứ hạng theo khu vực: {count_kv} / {count_kv_noscore}
22
+ Thứ hạng theo tỉnh: {count_tinh} / {count_tinh_noscore}""", score.iloc[:, 1:10]
23
 
24
  """
25
  Chatbot