Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ def findCorrelation(dataset, target):
|
|
18 |
print(df)
|
19 |
print("\n")
|
20 |
|
21 |
-
d = df.corr()["
|
22 |
print(d)
|
23 |
labels = sorted(d.items(), key=lambda x: x[1], reverse=True)
|
24 |
|
|
|
18 |
print(df)
|
19 |
print("\n")
|
20 |
|
21 |
+
d = df.corr()["coma"].to_dict()
|
22 |
print(d)
|
23 |
labels = sorted(d.items(), key=lambda x: x[1], reverse=True)
|
24 |
|