CarisMu commited on
Commit
34df3b4
·
verified ·
1 Parent(s): 51875c3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
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