Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def calculate_highest_combined_score(data, column):
|
|
100 |
# Function to display the results of the highest combined scores
|
101 |
def display_highest_combined_scores(data):
|
102 |
with st.spinner('Calculating highest combined scores...'):
|
103 |
-
results = [calculate_highest_combined_score(data, col) for col in
|
104 |
for column, top_combinations in results:
|
105 |
st.subheader(f"Top Combinations for {column}")
|
106 |
for r, combinations in top_combinations.items():
|
|
|
100 |
# Function to display the results of the highest combined scores
|
101 |
def display_highest_combined_scores(data):
|
102 |
with st.spinner('Calculating highest combined scores...'):
|
103 |
+
results = [calculate_highest_combined_score(data, col) for col in columns]
|
104 |
for column, top_combinations in results:
|
105 |
st.subheader(f"Top Combinations for {column}")
|
106 |
for r, combinations in top_combinations.items():
|