James McCool
commited on
Commit
·
37d804e
1
Parent(s):
daa425d
Adjust dataframe display height in app.py
Browse files- Reduced the height of the displayed dataframe from 1000 to 500 for improved visibility and user experience.
- This change enhances the layout and ensures better integration with the overall application design.
app.py
CHANGED
@@ -219,7 +219,7 @@ with tab2:
|
|
219 |
.background_gradient(axis=0)
|
220 |
.background_gradient(cmap='RdYlGn')
|
221 |
.format(precision=2),
|
222 |
-
height=
|
223 |
use_container_width=True,
|
224 |
hide_index=True
|
225 |
)
|
|
|
219 |
.background_gradient(axis=0)
|
220 |
.background_gradient(cmap='RdYlGn')
|
221 |
.format(precision=2),
|
222 |
+
height=500,
|
223 |
use_container_width=True,
|
224 |
hide_index=True
|
225 |
)
|