LeonceNsh commited on
Commit
05d82ce
·
verified ·
1 Parent(s): dd5783d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ logger.info(f"Standardized Column Names: {data.columns.tolist()}")
28
 
29
  # Filter out Health since Healthcare is the correct Market Sergment
30
  print(data.head())
31
- data = data[data.Industry != 'Health']
32
 
33
  # Identify the valuation column
34
  valuation_columns = [col for col in data.columns if 'valuation' in col.lower()]
 
28
 
29
  # Filter out Health since Healthcare is the correct Market Sergment
30
  print(data.head())
31
+ data = data[data.industry != 'Health']
32
 
33
  # Identify the valuation column
34
  valuation_columns = [col for col in data.columns if 'valuation' in col.lower()]