Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,7 @@ def filter_investors_by_country_and_industry(selected_country, selected_industry
|
|
101 |
investor_valuations = {}
|
102 |
for investor, companies in investor_company_mapping_filtered.items():
|
103 |
total_valuation = filtered_data[filtered_data["Company"].isin(companies)]["Valuation_Billions"].sum()
|
104 |
-
if total_valuation >=
|
105 |
investor_valuations[investor] = total_valuation
|
106 |
|
107 |
logger.info(f"Filtered investors with total valuation >= 20B: {len(investor_valuations)}")
|
|
|
101 |
investor_valuations = {}
|
102 |
for investor, companies in investor_company_mapping_filtered.items():
|
103 |
total_valuation = filtered_data[filtered_data["Company"].isin(companies)]["Valuation_Billions"].sum()
|
104 |
+
if total_valuation >= 5: # Investors with >= 20B total valuation
|
105 |
investor_valuations[investor] = total_valuation
|
106 |
|
107 |
logger.info(f"Filtered investors with total valuation >= 20B: {len(investor_valuations)}")
|