CarisMu commited on
Commit
98ad4de
1 Parent(s): 34df3b4

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -375,7 +375,7 @@ dataset_comparison2 = pd.DataFrame(
375
  )
376
  # Apply table styling: Light green for the header, alternating white and light grey for rows
377
  styled_table = dataset_comparison2.style.set_properties(
378
- **{'background-color': rgb(234 255 241)}, subset=pd.IndexSlice[0,:]
379
  ).apply(
380
  lambda x: ['background-color: white' if i % 2 == 0 else 'background-color: rgb(237, 242, 251)' for i in range(len(x))],
381
  axis=0
 
375
  )
376
  # Apply table styling: Light green for the header, alternating white and light grey for rows
377
  styled_table = dataset_comparison2.style.set_properties(
378
+ **{'background-color': rgb(234, 255, 241)}, subset=pd.IndexSlice[0,:]
379
  ).apply(
380
  lambda x: ['background-color: white' if i % 2 == 0 else 'background-color: rgb(237, 242, 251)' for i in range(len(x))],
381
  axis=0