CarisMu commited on
Commit
e636662
1 Parent(s): 1f1de6b
Files changed (1) hide show
  1. web.py +2 -2
web.py CHANGED
@@ -107,7 +107,7 @@ data_filtering_table_data = pd.DataFrame(
107
  }
108
  )
109
  styled_table = (
110
- dataset_comparison1.style.set_properties(
111
  **{"background-color": "#E1EEDB"},
112
  subset=pd.IndexSlice[0, :], # Row 0 with a light green background
113
  )
@@ -197,7 +197,7 @@ qf_filtering_table_data = pd.DataFrame(
197
  }
198
  )
199
  styled_table = (
200
- dataset_comparison1.style.set_properties(
201
  **{"background-color": "#E1EEDB"},
202
  subset=pd.IndexSlice[0, :], # Row 0 with a light green background
203
  )
 
107
  }
108
  )
109
  styled_table = (
110
+ data_filtering_table_data.style.set_properties(
111
  **{"background-color": "#E1EEDB"},
112
  subset=pd.IndexSlice[0, :], # Row 0 with a light green background
113
  )
 
197
  }
198
  )
199
  styled_table = (
200
+ qf_filtering_table_data.style.set_properties(
201
  **{"background-color": "#E1EEDB"},
202
  subset=pd.IndexSlice[0, :], # Row 0 with a light green background
203
  )