CarisMu commited on
Commit
fe91749
1 Parent(s): 6b0b935

fix an error

Browse files
Files changed (1) hide show
  1. 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[:, new_dataset_comparison1.columns.difference(["TxT360 - Upsampling", "TxT360 Difference"])] # Apply to all columns except "TxT360" and "AnotherColumn"
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
  )