Spaces:
Runtime error
Runtime error
Commit
·
390ba15
1
Parent(s):
ab374a2
app
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ def outbreak(plot_type):
|
|
22 |
if plot_type == "Find Data Correlation":
|
23 |
fig = plt.figure()
|
24 |
data_correlation = data_encoded.corr()
|
25 |
-
plt.rcParams["figure.figsize"] = [
|
26 |
sns.heatmap(data_correlation,xticklabels=data_correlation.columns,yticklabels=data_correlation.columns)
|
27 |
return fig
|
28 |
if plot_type == "Age Attrition":
|
|
|
22 |
if plot_type == "Find Data Correlation":
|
23 |
fig = plt.figure()
|
24 |
data_correlation = data_encoded.corr()
|
25 |
+
plt.rcParams["figure.figsize"] = [6,6]
|
26 |
sns.heatmap(data_correlation,xticklabels=data_correlation.columns,yticklabels=data_correlation.columns)
|
27 |
return fig
|
28 |
if plot_type == "Age Attrition":
|