Update my_pages/information_loss.py
Browse files
my_pages/information_loss.py
CHANGED
|
@@ -58,3 +58,12 @@ def render():
|
|
| 58 |
st.dataframe(df, use_container_width=True)
|
| 59 |
else:
|
| 60 |
st.info("No features added yet. Click a feature above to add it to the dataset.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
st.dataframe(df, use_container_width=True)
|
| 59 |
else:
|
| 60 |
st.info("No features added yet. Click a feature above to add it to the dataset.")
|
| 61 |
+
|
| 62 |
+
st.markdown("---")
|
| 63 |
+
col1, col2, col3, col4 = st.columns([2, 1, 1, 1])
|
| 64 |
+
with col3:
|
| 65 |
+
if st.button("Go Home"):
|
| 66 |
+
go_to("home")
|
| 67 |
+
with col4:
|
| 68 |
+
if st.button("Next"):
|
| 69 |
+
go_to("rashomon_effect")
|