FahadAlam commited on
Commit
68c8a8e
1 Parent(s): ec76814

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def findCorrelation(dataset, target):
19
  print("\n")
20
 
21
  d = df.corr()[target].to_dict()
22
- d = d.pop(target)
23
  print(d)
24
  keys = sorted(d.items(), key=lambda x: x[0], reverse=True)
25
 
 
19
  print("\n")
20
 
21
  d = df.corr()[target].to_dict()
22
+ d.pop(target)
23
  print(d)
24
  keys = sorted(d.items(), key=lambda x: x[0], reverse=True)
25