casheu commited on
Commit
49e7a62
1 Parent(s): bdd11ba
Files changed (1) hide show
  1. eda.py +2 -2
eda.py CHANGED
@@ -35,7 +35,7 @@ def run():
35
  st.subheader('Area Income')
36
 
37
  def scat(df, x, y):
38
- fig = plt.figure(figsize=(20, 15))
39
  sns.scatterplot(data=df, x=x, y=y)
40
  st.pyplot(fig)
41
 
@@ -81,7 +81,7 @@ def run():
81
  st.subheader('Connection Between Features')
82
 
83
  def scatp(df, x, y, hue):
84
- fig = plt.figure(figsize=(20, 15))
85
  sns.scatterplot(data=df, x=x, y=y, hue=hue)
86
  st.pyplot(fig)
87
 
35
  st.subheader('Area Income')
36
 
37
  def scat(df, x, y):
38
+ fig = plt.figure(figsize=(15, 10))
39
  sns.scatterplot(data=df, x=x, y=y)
40
  st.pyplot(fig)
41
 
81
  st.subheader('Connection Between Features')
82
 
83
  def scatp(df, x, y, hue):
84
+ fig = plt.figure(figsize=(15, 10))
85
  sns.scatterplot(data=df, x=x, y=y, hue=hue)
86
  st.pyplot(fig)
87