Update Home.py
Browse files
Home.py
CHANGED
|
@@ -65,14 +65,17 @@ if keyword_list_j is not None:
|
|
| 65 |
|
| 66 |
# creating result
|
| 67 |
if text_search:
|
| 68 |
-
|
| 69 |
st.caption(f"Kami menemukan **{key_df_j.shape[0]}** artikel yang sesuai dengan apa yang dicari.")
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
|
|
|
| 73 |
red = popover.checkbox("Show red items.", True)
|
| 74 |
blue = popover.checkbox("Show blue items.", True)
|
| 75 |
|
|
|
|
|
|
|
| 76 |
@st.cache_data
|
| 77 |
def get_data(df):
|
| 78 |
df = pd.DataFrame(
|
|
|
|
| 65 |
|
| 66 |
# creating result
|
| 67 |
if text_search:
|
| 68 |
+
|
| 69 |
st.caption(f"Kami menemukan **{key_df_j.shape[0]}** artikel yang sesuai dengan apa yang dicari.")
|
| 70 |
+
|
| 71 |
+
cl1, cl2 = st.columns([7,3])
|
| 72 |
+
|
| 73 |
+
popover = cl1.popover("Unduh Hasil")
|
| 74 |
red = popover.checkbox("Show red items.", True)
|
| 75 |
blue = popover.checkbox("Show blue items.", True)
|
| 76 |
|
| 77 |
+
selection = cl2.radio("Pilih menu", ("Hasil Pencarian", "Analisis Hasil"), horizontal=True)
|
| 78 |
+
|
| 79 |
@st.cache_data
|
| 80 |
def get_data(df):
|
| 81 |
df = pd.DataFrame(
|