Jan Mühlnikel
commited on
Commit
·
22386e0
1
Parent(s):
4135c81
similarity first col
Browse files- modules/result_table.py +10 -0
modules/result_table.py
CHANGED
@@ -11,6 +11,11 @@ def show_table(p1_df, p2_df):
|
|
11 |
use_container_width = True,
|
12 |
height = 35 + 35 * len(p1_df),
|
13 |
column_config={
|
|
|
|
|
|
|
|
|
|
|
14 |
"iati_id": st.column_config.TextColumn(
|
15 |
"IATI ID",
|
16 |
help="IATI Project ID",
|
@@ -68,6 +73,11 @@ def show_table(p1_df, p2_df):
|
|
68 |
use_container_width = True,
|
69 |
height = 35 + 35 * len(p2_df),
|
70 |
column_config={
|
|
|
|
|
|
|
|
|
|
|
71 |
"iati_id": st.column_config.TextColumn(
|
72 |
"IATI ID",
|
73 |
help="IATI Project ID",
|
|
|
11 |
use_container_width = True,
|
12 |
height = 35 + 35 * len(p1_df),
|
13 |
column_config={
|
14 |
+
"similarity": st.column_config.TextColumn(
|
15 |
+
"Similarity",
|
16 |
+
help="simialrity",
|
17 |
+
disabled=True
|
18 |
+
),
|
19 |
"iati_id": st.column_config.TextColumn(
|
20 |
"IATI ID",
|
21 |
help="IATI Project ID",
|
|
|
73 |
use_container_width = True,
|
74 |
height = 35 + 35 * len(p2_df),
|
75 |
column_config={
|
76 |
+
"similarity": st.column_config.TextColumn(
|
77 |
+
"Similarity",
|
78 |
+
help="simialrity",
|
79 |
+
disabled=True
|
80 |
+
),
|
81 |
"iati_id": st.column_config.TextColumn(
|
82 |
"IATI ID",
|
83 |
help="IATI Project ID",
|