vashu2425 commited on
Commit
21eff50
·
verified ·
1 Parent(s): b1dca34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1309,7 +1309,7 @@ def display_distribution_tab():
1309
 
1310
  # Show highest correlations
1311
  corr_df = corr_matrix.stack().reset_index()
1312
- corr_df.columns.tolist() = ['Variable 1', 'Variable 2', 'Correlation']
1313
  corr_df = corr_df[corr_df['Variable 1'] != corr_df['Variable 2']]
1314
  corr_df = corr_df.sort_values('Correlation', ascending=False).head(5)
1315
 
 
1309
 
1310
  # Show highest correlations
1311
  corr_df = corr_matrix.stack().reset_index()
1312
+ corr_df.columns = ['Variable 1', 'Variable 2', 'Correlation']
1313
  corr_df = corr_df[corr_df['Variable 1'] != corr_df['Variable 2']]
1314
  corr_df = corr_df.sort_values('Correlation', ascending=False).head(5)
1315