Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -29,15 +29,15 @@ def findCorrelation(dataset, target):
|
|
29 |
|
30 |
fig2 = plt.figure()
|
31 |
# use the function regplot to make a scatterplot
|
32 |
-
sns.regplot(x=keys[0], y=df[target])
|
33 |
|
34 |
fig3 = plt.figure()
|
35 |
# use the function regplot to make a scatterplot
|
36 |
-
sns.regplot(x=keys[1], y=df[target])
|
37 |
|
38 |
fig4 = plt.figure()
|
39 |
# use the function regplot to make a scatterplot
|
40 |
-
sns.regplot(x=keys[2], y=df[target])
|
41 |
|
42 |
|
43 |
labels = {key: d[key] for key in keys[10]}
|
|
|
29 |
|
30 |
fig2 = plt.figure()
|
31 |
# use the function regplot to make a scatterplot
|
32 |
+
sns.regplot(x=df[keys[0]], y=df[target])
|
33 |
|
34 |
fig3 = plt.figure()
|
35 |
# use the function regplot to make a scatterplot
|
36 |
+
sns.regplot(x=df[keys[1]], y=df[target])
|
37 |
|
38 |
fig4 = plt.figure()
|
39 |
# use the function regplot to make a scatterplot
|
40 |
+
sns.regplot(x=df[keys[2]], y=df[target])
|
41 |
|
42 |
|
43 |
labels = {key: d[key] for key in keys[10]}
|