CultriX commited on
Commit
70d3b96
·
verified ·
1 Parent(s): ebf8650

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 score_columns]
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():