Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
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()]
|