nesticot commited on
Commit
6ef2a90
·
verified ·
1 Parent(s): 9d5a576

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1049,7 +1049,7 @@ def server(input, output, session):
1049
 
1050
 
1051
  df_small_pivot = df_small_pivot.with_columns([
1052
- pl.col(col).round(0).alias(col) for col in ['CH', 'CU', 'FC', 'FF', 'FS', 'SI', 'SL', 'ST', 'All']
1053
  ])
1054
 
1055
 
 
1049
 
1050
 
1051
  df_small_pivot = df_small_pivot.with_columns([
1052
+ pl.col(col).cast(pl.Float64).round(0).alias(col) for col in ['CH', 'CU', 'FC', 'FF', 'FS', 'SI', 'SL', 'ST', 'All']
1053
  ])
1054
 
1055