Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -479,17 +479,19 @@ new_dataset_comparison1 = pd.DataFrame(
|
|
479 |
# Apply table styling: Light green for the header, alternating white and light grey for rows
|
480 |
styled_table = (
|
481 |
new_dataset_comparison1.style.set_properties(
|
482 |
-
**{"background-color": "#E1EEDB"},
|
483 |
-
subset=pd.IndexSlice[
|
484 |
)
|
485 |
.apply(
|
486 |
lambda x: [
|
487 |
-
"background-color:
|
|
|
|
|
488 |
for i in range(len(x))
|
489 |
],
|
490 |
axis=0,
|
491 |
)
|
492 |
-
.hide(axis="index")
|
493 |
) # Hide the row index
|
494 |
|
495 |
# Use _repr_html_() method to get the HTML representation of the styled DataFrame
|
|
|
479 |
# Apply table styling: Light green for the header, alternating white and light grey for rows
|
480 |
styled_table = (
|
481 |
new_dataset_comparison1.style.set_properties(
|
482 |
+
**{"background-color": "#E1EEDB"},
|
483 |
+
subset=pd.IndexSlice[0, :], # Row 0 with a light green background
|
484 |
)
|
485 |
.apply(
|
486 |
lambda x: [
|
487 |
+
"background-color: #E1EEDB" # Green background for row 0
|
488 |
+
if i == 0
|
489 |
+
else "background-color: rgb(237, 242, 251)" # Blue background for other rows
|
490 |
for i in range(len(x))
|
491 |
],
|
492 |
axis=0,
|
493 |
)
|
494 |
+
.hide(axis="index")
|
495 |
) # Hide the row index
|
496 |
|
497 |
# Use _repr_html_() method to get the HTML representation of the styled DataFrame
|