Spaces:
Running
Running
fix an error
Browse files- results.py +1 -1
results.py
CHANGED
|
@@ -750,7 +750,7 @@ styled_table = (
|
|
| 750 |
)
|
| 751 |
.applymap(
|
| 752 |
lambda _: "background-color: white", # White background for all other columns
|
| 753 |
-
subset=pd.IndexSlice[:,
|
| 754 |
)
|
| 755 |
.hide(axis="index") # Hide the row index
|
| 756 |
)
|
|
|
|
| 750 |
)
|
| 751 |
.applymap(
|
| 752 |
lambda _: "background-color: white", # White background for all other columns
|
| 753 |
+
subset=pd.IndexSlice[:, dataset_comparison.columns.difference(["TxT360 - Upsampling", "TxT360 Difference"])] # Apply to all columns except "TxT360" and "AnotherColumn"
|
| 754 |
)
|
| 755 |
.hide(axis="index") # Hide the row index
|
| 756 |
)
|