James McCool
commited on
Commit
·
f015507
1
Parent(s):
ac15dde
Refactor dataframe display in app.py for streamlined presentation
Browse files- Removed unnecessary parameters from the st.table function, simplifying the display of paginated data.
- Enhanced clarity by focusing on essential data presentation without additional styling.
app.py
CHANGED
@@ -202,8 +202,5 @@ with tab2:
|
|
202 |
|
203 |
# Display the paginated dataframe
|
204 |
st.table(
|
205 |
-
working_df.iloc[start_idx:end_idx]
|
206 |
-
height=1000,
|
207 |
-
use_container_width=True,
|
208 |
-
hide_index=True
|
209 |
)
|
|
|
202 |
|
203 |
# Display the paginated dataframe
|
204 |
st.table(
|
205 |
+
working_df.iloc[start_idx:end_idx]
|
|
|
|
|
|
|
206 |
)
|