Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -289,7 +289,7 @@ dataset_comparison1 = pd.DataFrame(
|
|
289 |
|
290 |
# Apply table styling: Light green for the header, alternating white and light grey for rows
|
291 |
styled_table = dataset_comparison1.style.set_properties(
|
292 |
-
**{'background-color': rgb(234 255 241)}, subset=pd.IndexSlice[0,:]
|
293 |
).apply(
|
294 |
lambda x: ['background-color: white' if i % 2 == 0 else 'background-color: rgb(237, 242, 251)' for i in range(len(x))],
|
295 |
axis=0
|
|
|
289 |
|
290 |
# Apply table styling: Light green for the header, alternating white and light grey for rows
|
291 |
styled_table = dataset_comparison1.style.set_properties(
|
292 |
+
**{'background-color': rgb(234, 255, 241)}, subset=pd.IndexSlice[0,:]
|
293 |
).apply(
|
294 |
lambda x: ['background-color: white' if i % 2 == 0 else 'background-color: rgb(237, 242, 251)' for i in range(len(x))],
|
295 |
axis=0
|