Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ def plot_graphs(data):
|
|
70 |
|
71 |
# Correlation heatmap
|
72 |
st.markdown("#### Correlation Heatmap")
|
73 |
-
fig, ax = plt.subplots(figsize=(
|
74 |
sns.heatmap(data.corr(), annot=True, cmap="coolwarm", ax=ax)
|
75 |
ax.set_title("Correlation Heatmap")
|
76 |
st.pyplot(fig)
|
|
|
70 |
|
71 |
# Correlation heatmap
|
72 |
st.markdown("#### Correlation Heatmap")
|
73 |
+
fig, ax = plt.subplots(figsize=(10, 8))
|
74 |
sns.heatmap(data.corr(), annot=True, cmap="coolwarm", ax=ax)
|
75 |
ax.set_title("Correlation Heatmap")
|
76 |
st.pyplot(fig)
|