Update my_pages/information_loss.py
Browse files
my_pages/information_loss.py
CHANGED
|
@@ -80,9 +80,6 @@ def render():
|
|
| 80 |
|
| 81 |
st.markdown("---")
|
| 82 |
st.markdown("**Set of Selected Features:**")
|
| 83 |
-
|
| 84 |
for i, item in enumerate(display_features_list):
|
| 85 |
-
|
| 86 |
-
col1.markdown(f"- {item}")
|
| 87 |
-
else:
|
| 88 |
-
col2.markdown(f"- {item}")
|
|
|
|
| 80 |
|
| 81 |
st.markdown("---")
|
| 82 |
st.markdown("**Set of Selected Features:**")
|
| 83 |
+
cols_list = st.columns(3)
|
| 84 |
for i, item in enumerate(display_features_list):
|
| 85 |
+
cols_list[i%3].markdown(f"- {item}")
|
|
|
|
|
|
|
|
|